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

Unified Diff: chrome/browser/ui/cocoa/presentation_mode_controller.mm

Issue 816403003: 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/ui/cocoa/presentation_mode_controller.mm
diff --git a/chrome/browser/ui/cocoa/presentation_mode_controller.mm b/chrome/browser/ui/cocoa/presentation_mode_controller.mm
index a80ceb1d40c38bf5dca654caeebe7c983080ec3c..3050092b931fec0311834fee8f4f0637c74871d0 100644
--- a/chrome/browser/ui/cocoa/presentation_mode_controller.mm
+++ b/chrome/browser/ui/cocoa/presentation_mode_controller.mm
@@ -334,7 +334,7 @@ OSStatus MenuBarRevealHandler(EventHandlerCallRef handler,
if (!inPresentationMode_)
return;
- if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kKioskMode))
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kKioskMode))
return;
if (self.slidingStyle == fullscreen_mac::OMNIBOX_TABS_PRESENT)

Powered by Google App Engine
This is Rietveld 408576698