blob: ba611831bb0d9bb7c6eeb80e5b0df153a60e618c [file] [log] [blame] [edit]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/download/trusted_sources_manager.h"
#include "base/command_line.h"
#include "chrome/common/chrome_switches.h"
TrustedSourcesManager::TrustedSourcesManager() {
base::CommandLine* command_line(base::CommandLine::ForCurrentProcess());
DCHECK(command_line);
matcher_ = net::SchemeHostPortMatcher::FromRawString(
command_line->GetSwitchValueASCII(switches::kTrustedDownloadSources));
}
TrustedSourcesManager::~TrustedSourcesManager() = default;
bool TrustedSourcesManager::IsFromTrustedSource(const GURL& url) const {
return matcher_.Includes(url);
}