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

Unified Diff: chrome/browser/ui/cocoa/browser_window_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/browser_window_controller.mm
diff --git a/chrome/browser/ui/cocoa/browser_window_controller.mm b/chrome/browser/ui/cocoa/browser_window_controller.mm
index 52e4c4222660b817274605b66d51f8b7da9ae564..21b052eae46d66511acbb3b85498b3e67dbffee2 100644
--- a/chrome/browser/ui/cocoa/browser_window_controller.mm
+++ b/chrome/browser/ui/cocoa/browser_window_controller.mm
@@ -587,7 +587,8 @@ using content::WebContents;
[self saveWindowPositionIfNeeded];
bool fast_tab_closing_enabled =
- CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnableFastUnload);
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kEnableFastUnload);
if (!browser_->tab_strip_model()->empty()) {
// Tab strip isn't empty. Hide the frame (so it appears to have closed

Powered by Google App Engine
This is Rietveld 408576698