| Index: chrome/browser/extensions/extension_util.cc
|
| diff --git a/chrome/browser/extensions/extension_util.cc b/chrome/browser/extensions/extension_util.cc
|
| index 11fb243b12ca56d7284e21c0702882549521fbaf..1724be0faf2efec47d1f772131f143cc411c668a 100644
|
| --- a/chrome/browser/extensions/extension_util.cc
|
| +++ b/chrome/browser/extensions/extension_util.cc
|
| @@ -155,7 +155,7 @@ bool CanLoadInIncognito(const Extension* extension,
|
|
|
| bool AllowFileAccess(const std::string& extension_id,
|
| content::BrowserContext* context) {
|
| - return CommandLine::ForCurrentProcess()->HasSwitch(
|
| + return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDisableExtensionsFileAccessCheck) ||
|
| ExtensionPrefs::Get(context)->AllowFileAccess(extension_id);
|
| }
|
| @@ -350,8 +350,8 @@ const gfx::ImageSkia& GetDefaultExtensionIcon() {
|
| }
|
|
|
| bool IsStreamlinedHostedAppsEnabled() {
|
| - return !CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kDisableNewBookmarkApps);
|
| + return !base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kDisableNewBookmarkApps);
|
| }
|
|
|
| } // namespace util
|
|
|