diff options
Diffstat (limited to 'android_webview/browser')
-rw-r--r-- | android_webview/browser/browser_view_renderer.cc | 2 | ||||
-rw-r--r-- | android_webview/browser/net/aw_url_request_context_getter.cc | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/android_webview/browser/browser_view_renderer.cc b/android_webview/browser/browser_view_renderer.cc index 5bf8168..51c62f8 100644 --- a/android_webview/browser/browser_view_renderer.cc +++ b/android_webview/browser/browser_view_renderer.cc @@ -39,7 +39,7 @@ uint64 g_memory_override_in_bytes = 0u; // static void BrowserViewRenderer::CalculateTileMemoryPolicy() { - CommandLine* cl = CommandLine::ForCurrentProcess(); + base::CommandLine* cl = base::CommandLine::ForCurrentProcess(); // If the value was overridden on the command line, use the specified value. bool client_hard_limit_bytes_overridden = diff --git a/android_webview/browser/net/aw_url_request_context_getter.cc b/android_webview/browser/net/aw_url_request_context_getter.cc index e37f59e..a0fbed0 100644 --- a/android_webview/browser/net/aw_url_request_context_getter.cc +++ b/android_webview/browser/net/aw_url_request_context_getter.cc @@ -52,7 +52,8 @@ namespace { void ApplyCmdlineOverridesToURLRequestContextBuilder( net::URLRequestContextBuilder* builder) { - const CommandLine& command_line = *CommandLine::ForCurrentProcess(); + const base::CommandLine& command_line = + *base::CommandLine::ForCurrentProcess(); if (command_line.HasSwitch(switches::kHostResolverRules)) { // If hostname remappings were specified on the command-line, layer these // rules on top of the real host resolver. This allows forwarding all @@ -69,7 +70,8 @@ void ApplyCmdlineOverridesToURLRequestContextBuilder( void ApplyCmdlineOverridesToNetworkSessionParams( net::HttpNetworkSession::Params* params) { int value; - const CommandLine& command_line = *CommandLine::ForCurrentProcess(); + const base::CommandLine& command_line = + *base::CommandLine::ForCurrentProcess(); if (command_line.HasSwitch(switches::kTestingFixedHttpPort)) { base::StringToInt(command_line.GetSwitchValueASCII( switches::kTestingFixedHttpPort), &value); |