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

Unified Diff: chrome/browser/extensions/extension_special_storage_policy.cc

Issue 819133004: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_special_storage_policy.cc
diff --git a/chrome/browser/extensions/extension_special_storage_policy.cc b/chrome/browser/extensions/extension_special_storage_policy.cc
index c1eddb6c7d4805aa9d3d3a5718506b5330cc9a67..f07999f32c55bfefceaeded8f37de8335d510640 100644
--- a/chrome/browser/extensions/extension_special_storage_policy.cc
+++ b/chrome/browser/extensions/extension_special_storage_policy.cc
@@ -89,7 +89,8 @@ bool ExtensionSpecialStoragePolicy::IsStorageProtected(const GURL& origin) {
}
bool ExtensionSpecialStoragePolicy::IsStorageUnlimited(const GURL& origin) {
- if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kUnlimitedStorage))
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kUnlimitedStorage))
return true;
if (origin.SchemeIs(content::kChromeDevToolsScheme) &&
« no previous file with comments | « chrome/browser/extensions/extension_service_unittest.cc ('k') | chrome/browser/extensions/extension_startup_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698