| Index: chrome/browser/ui/webui/devtools_ui.cc
|
| diff --git a/chrome/browser/ui/webui/devtools_ui.cc b/chrome/browser/ui/webui/devtools_ui.cc
|
| index 1bf767ed2da7eca0080b40b2cb4b2ade44af5e6d..6769e9ef422a74993a127ca93bf5c1e2520b8934 100644
|
| --- a/chrome/browser/ui/webui/devtools_ui.cc
|
| +++ b/chrome/browser/ui/webui/devtools_ui.cc
|
| @@ -191,7 +191,7 @@ void DevToolsDataSource::StartDataRequest(
|
|
|
| // Serve static response while connecting to the remote device.
|
| if (StartsWithASCII(path, kRemoteOpenPrefix, false)) {
|
| - if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| + if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kEnableDevToolsExperiments)) {
|
| callback.Run(NULL);
|
| return;
|
| @@ -377,8 +377,8 @@ DevToolsUI::~DevToolsUI() {
|
| void DevToolsUI::NavigationEntryCommitted(
|
| const content::LoadCommittedDetails& load_details) {
|
| content::NavigationEntry* entry = load_details.entry;
|
| - if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableDevToolsExperiments)) {
|
| + if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kEnableDevToolsExperiments)) {
|
| return;
|
| }
|
|
|
|
|