| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index 94f4fed9a881b3625de7df9ba89216a514f4ceed..774014f579abe26c1dd42527660e38b866926218 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -388,6 +388,14 @@ void Shell::OnOverviewModeEnding() {
|
| FOR_EACH_OBSERVER(ShellObserver, observers_, OnOverviewModeEnding());
|
| }
|
|
|
| +void Shell::OnMaximizeModeStarted() {
|
| + FOR_EACH_OBSERVER(ShellObserver, observers_, OnMaximizeModeStarted());
|
| +}
|
| +
|
| +void Shell::OnMaximizeModeEnded() {
|
| + FOR_EACH_OBSERVER(ShellObserver, observers_, OnMaximizeModeEnded());
|
| +}
|
| +
|
| void Shell::CreateShelf() {
|
| RootWindowControllerList controllers = GetAllRootWindowControllers();
|
| for (RootWindowControllerList::iterator iter = controllers.begin();
|
|
|