| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index 04be582729e5d0d7ea6695211d62e26063b52622..a8ae3f643fe94deabba824858ec4b14a46c26783 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -415,6 +415,12 @@ bool Shell::IsLauncherPerDisplayEnabled() {
|
| return !command_line->HasSwitch(switches::kAshDisableLauncherPerDisplay);
|
| }
|
|
|
| +// static
|
| +bool Shell::IsForcedMaximizeMode() {
|
| + CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + return command_line->HasSwitch(switches::kForcedMaximizeMode);
|
| +}
|
| +
|
| void Shell::Init() {
|
| delegate_->PreInit();
|
| #if defined(OS_CHROMEOS)
|
|
|