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

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

Issue 1072933006: Support whitelisting to handle insecure origins as trustworthy origins (chromium) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added more tests Created 5 years, 7 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/common/secure_origin_whitelist.h"
6
7 #include <vector>
8
9 #include "base/command_line.h"
10 #include "base/strings/string_split.h"
11 #include "chrome/common/chrome_switches.h"
12
13 void GetSecureOriginWhitelist(std::set<GURL>* origins) {
14 // If kUnsafetyTreatInsecureOriginAsSecure option is given and
15 // kUserDataDir is present, add the given origins as trustworthy
16 // for whitelisting.
17 const base::CommandLine& command_line =
18 *base::CommandLine::ForCurrentProcess();
19 if (command_line.HasSwitch(switches::kUnsafetyTreatInsecureOriginAsSecure) &&
20 command_line.HasSwitch(switches::kUserDataDir)) {
21 std::vector<std::string> given_origins;
22 base::SplitString(command_line.GetSwitchValueASCII(
23 switches::kUnsafetyTreatInsecureOriginAsSecure), ',', &given_origins);
24 for (const auto& origin : given_origins)
25 origins->insert(GURL(origin));
26 }
27 }
OLDNEW
« no previous file with comments | « chrome/common/secure_origin_whitelist.h ('k') | chrome/common/secure_origin_whitelist_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698