Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: chrome/common/secure_origin_whitelist.cc

Issue 2622693002: Cleanup of static lists of schemes & origins that are created at startup. (Closed)
Patch Set: merge Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/secure_origin_whitelist.h" 5 #include "chrome/common/secure_origin_whitelist.h"
6 6
7 #include <vector>
8
9 #include "base/command_line.h" 7 #include "base/command_line.h"
10 #include "base/strings/string_split.h" 8 #include "base/strings/string_split.h"
11 #include "chrome/common/chrome_switches.h" 9 #include "chrome/common/chrome_switches.h"
12 #include "extensions/common/constants.h" 10 #include "extensions/common/constants.h"
13 11
14 void GetSecureOriginWhitelist(std::set<GURL>* origins) { 12 std::vector<GURL> GetSecureOriginWhitelist() {
13 std::vector<GURL> origins;
15 // If kUnsafelyTreatInsecureOriginAsSecure option is given and 14 // If kUnsafelyTreatInsecureOriginAsSecure option is given and
16 // kUserDataDir is present, add the given origins as trustworthy 15 // kUserDataDir is present, add the given origins as trustworthy
17 // for whitelisting. 16 // for whitelisting.
18 const base::CommandLine& command_line = 17 const base::CommandLine& command_line =
19 *base::CommandLine::ForCurrentProcess(); 18 *base::CommandLine::ForCurrentProcess();
20 if (command_line.HasSwitch(switches::kUnsafelyTreatInsecureOriginAsSecure) && 19 if (command_line.HasSwitch(switches::kUnsafelyTreatInsecureOriginAsSecure) &&
21 command_line.HasSwitch(switches::kUserDataDir)) { 20 command_line.HasSwitch(switches::kUserDataDir)) {
22 std::string origins_str = command_line.GetSwitchValueASCII( 21 std::string origins_str = command_line.GetSwitchValueASCII(
23 switches::kUnsafelyTreatInsecureOriginAsSecure); 22 switches::kUnsafelyTreatInsecureOriginAsSecure);
24 for (const std::string& origin : base::SplitString( 23 for (const std::string& origin : base::SplitString(
25 origins_str, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL)) 24 origins_str, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL))
26 origins->insert(GURL(origin)); 25 origins.push_back(GURL(origin));
27 } 26 }
27
28 return origins;
28 } 29 }
29 30
30 void GetSchemesBypassingSecureContextCheckWhitelist( 31 std::set<std::string> GetSchemesBypassingSecureContextCheckWhitelist() {
31 std::set<std::string>* schemes) { 32 std::set<std::string> schemes;
32 schemes->insert(extensions::kExtensionScheme); 33 schemes.insert(extensions::kExtensionScheme);
34 return schemes;
33 } 35 }
OLDNEW
« no previous file with comments | « chrome/common/secure_origin_whitelist.h ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698