| Index: ash/display/display_manager.cc
|
| diff --git a/ash/display/display_manager.cc b/ash/display/display_manager.cc
|
| index 4cec2ea81d73a1332c309e16efe78eb081f4ce7c..6c6513a448d4019601b184ea813f63a50b4883cd 100644
|
| --- a/ash/display/display_manager.cc
|
| +++ b/ash/display/display_manager.cc
|
| @@ -106,7 +106,7 @@ gfx::Display& GetInvalidDisplay() {
|
| }
|
|
|
| void MaybeInitInternalDisplay(int64 id) {
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| if (command_line->HasSwitch(switches::kAshUseFirstDisplayAsInternal))
|
| gfx::Display::SetInternalDisplayId(id);
|
| }
|
| @@ -241,7 +241,7 @@ float DisplayManager::GetNextUIScale(const DisplayInfo& info, bool up) {
|
|
|
| bool DisplayManager::InitFromCommandLine() {
|
| DisplayInfoList info_list;
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| if (!command_line->HasSwitch(switches::kAshHostWindowBounds))
|
| return false;
|
| const string size_str =
|
|
|