| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/browser/browsing_data_helper.h" | 5 #include "chrome/browser/browsing_data_helper.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "chrome/browser/extensions/extension_special_storage_policy.h" |
| 9 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
| 10 #include "chrome/common/url_constants.h" | 11 #include "chrome/common/url_constants.h" |
| 11 #include "content/public/browser/child_process_security_policy.h" | 12 #include "content/public/browser/child_process_security_policy.h" |
| 12 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
| 14 | 15 |
| 15 // Static | 16 // Static |
| 16 bool BrowsingDataHelper::IsWebScheme(const std::string& scheme) { | 17 bool BrowsingDataHelper::IsWebScheme(const std::string& scheme) { |
| 17 // Special-case `file://` scheme iff cookies and site data are enabled via | 18 // Special-case `file://` scheme iff cookies and site data are enabled via |
| 18 // the `--allow-file-cookies` CLI flag. | 19 // the `--allow-file-cookies` CLI flag. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 48 | 49 |
| 49 // Static | 50 // Static |
| 50 bool BrowsingDataHelper::IsExtensionScheme(const WebKit::WebString& scheme) { | 51 bool BrowsingDataHelper::IsExtensionScheme(const WebKit::WebString& scheme) { |
| 51 return BrowsingDataHelper::IsExtensionScheme(UTF16ToUTF8(scheme)); | 52 return BrowsingDataHelper::IsExtensionScheme(UTF16ToUTF8(scheme)); |
| 52 } | 53 } |
| 53 | 54 |
| 54 // Static | 55 // Static |
| 55 bool BrowsingDataHelper::HasExtensionScheme(const GURL& origin) { | 56 bool BrowsingDataHelper::HasExtensionScheme(const GURL& origin) { |
| 56 return BrowsingDataHelper::IsExtensionScheme(origin.scheme()); | 57 return BrowsingDataHelper::IsExtensionScheme(origin.scheme()); |
| 57 } | 58 } |
| 59 |
| 60 // Static |
| 61 bool BrowsingDataHelper::DoesOriginMatchMask(const GURL& origin, |
| 62 int origin_set_mask, ExtensionSpecialStoragePolicy* policy) { |
| 63 // Packaged apps and extensions match iff EXTENSION. |
| 64 if (BrowsingDataHelper::HasExtensionScheme(origin.GetOrigin()) && |
| 65 origin_set_mask & EXTENSION) |
| 66 return true; |
| 67 |
| 68 // If a websafe origin is unprotected, it matches iff UNPROTECTED_WEB. |
| 69 if (!policy->IsStorageProtected(origin.GetOrigin()) && |
| 70 BrowsingDataHelper::HasWebScheme(origin.GetOrigin()) && |
| 71 origin_set_mask & UNPROTECTED_WEB) |
| 72 return true; |
| 73 |
| 74 // Hosted applications (protected and websafe origins) iff PROTECTED_WEB. |
| 75 if (policy->IsStorageProtected(origin.GetOrigin()) && |
| 76 BrowsingDataHelper::HasWebScheme(origin.GetOrigin()) && |
| 77 origin_set_mask & PROTECTED_WEB) |
| 78 return true; |
| 79 |
| 80 return false; |
| 81 } |
| OLD | NEW |