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

Unified Diff: ui/base/win/shell.cc

Issue 819223002: 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
« no previous file with comments | « ui/base/ui_base_switches_util.cc ('k') | ui/compositor/compositor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/win/shell.cc
diff --git a/ui/base/win/shell.cc b/ui/base/win/shell.cc
index 4751fc84a9647c0a1afe1d356eb14a0a4c4086a8..9e47f8c94ac45f50bdeb8e5d0760135c87816198 100644
--- a/ui/base/win/shell.cc
+++ b/ui/base/win/shell.cc
@@ -144,8 +144,8 @@ bool IsAeroGlassEnabled() {
// user can specify this command line switch to mimic the behavior. In this
// mode, cross-HWND transparency is not supported and various types of
// widgets fallback to more simplified rendering behavior.
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisableDwmComposition))
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisableDwmComposition))
return false;
// Technically Aero glass works in Vista but we want to put XP and Vista
« no previous file with comments | « ui/base/ui_base_switches_util.cc ('k') | ui/compositor/compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698