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

Unified Diff: content/renderer/input/input_handler_proxy.cc

Issue 803813003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: content/renderer/input/input_handler_proxy.cc
diff --git a/content/renderer/input/input_handler_proxy.cc b/content/renderer/input/input_handler_proxy.cc
index 3edb957ab77b200c066f2485617198dca2f0565b..0287c9347412fd6d4e1a7df7d0b5eeb4c5093124 100644
--- a/content/renderer/input/input_handler_proxy.cc
+++ b/content/renderer/input/input_handler_proxy.cc
@@ -190,11 +190,11 @@ InputHandlerProxy::InputHandlerProxy(cc::InputHandler* input_handler,
base::TimeTicks::IsHighResNowFastAndReliable()) {
DCHECK(client);
input_handler_->BindToClient(this);
- smooth_scroll_enabled_ = CommandLine::ForCurrentProcess()->HasSwitch(
+ smooth_scroll_enabled_ = base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableSmoothScrolling);
#if defined(OS_MACOSX)
- if (CommandLine::ForCurrentProcess()->HasSwitch(
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kEnableThreadedEventHandlingMac)) {
scroll_elasticity_controller_.reset(new InputScrollElasticityController(
input_handler_->CreateScrollElasticityHelper()));
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | content/renderer/media/android/webmediaplayer_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698