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

Side by Side Diff: ui/aura_shell/shell.cc

Issue 8890049: [Aura] Implement views-based applist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura Created 8 years, 12 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/aura_shell/examples/example_factory.h ('k') | ui/aura_shell/shell_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/aura_shell/shell.h" 5 #include "ui/aura_shell/shell.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "ui/aura/root_window.h" 11 #include "ui/aura/root_window.h"
12 #include "ui/aura/layout_manager.h" 12 #include "ui/aura/layout_manager.h"
13 #include "ui/aura/window.h" 13 #include "ui/aura/window.h"
14 #include "ui/aura_shell/activation_controller.h" 14 #include "ui/aura_shell/activation_controller.h"
15 #include "ui/aura_shell/app_list.h" 15 #include "ui/aura_shell/app_list/app_list.h"
16 #include "ui/aura_shell/aura_shell_switches.h" 16 #include "ui/aura_shell/aura_shell_switches.h"
17 #include "ui/aura_shell/compact_layout_manager.h" 17 #include "ui/aura_shell/compact_layout_manager.h"
18 #include "ui/aura_shell/compact_status_area_layout_manager.h" 18 #include "ui/aura_shell/compact_status_area_layout_manager.h"
19 #include "ui/aura_shell/default_container_event_filter.h" 19 #include "ui/aura_shell/default_container_event_filter.h"
20 #include "ui/aura_shell/default_container_layout_manager.h" 20 #include "ui/aura_shell/default_container_layout_manager.h"
21 #include "ui/aura_shell/root_window_event_filter.h" 21 #include "ui/aura_shell/root_window_event_filter.h"
22 #include "ui/aura_shell/root_window_layout_manager.h" 22 #include "ui/aura_shell/root_window_layout_manager.h"
23 #include "ui/aura_shell/drag_drop_controller.h" 23 #include "ui/aura_shell/drag_drop_controller.h"
24 #include "ui/aura_shell/launcher/launcher.h" 24 #include "ui/aura_shell/launcher/launcher.h"
25 #include "ui/aura_shell/modal_container_layout_manager.h" 25 #include "ui/aura_shell/modal_container_layout_manager.h"
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 new internal::WorkspaceController(default_container)); 324 new internal::WorkspaceController(default_container));
325 workspace_controller_->SetLauncherModel(launcher_->model()); 325 workspace_controller_->SetLauncherModel(launcher_->model());
326 default_container->SetEventFilter( 326 default_container->SetEventFilter(
327 new internal::DefaultContainerEventFilter(default_container)); 327 new internal::DefaultContainerEventFilter(default_container));
328 default_container->SetLayoutManager( 328 default_container->SetLayoutManager(
329 new internal::DefaultContainerLayoutManager( 329 new internal::DefaultContainerLayoutManager(
330 workspace_controller_->workspace_manager())); 330 workspace_controller_->workspace_manager()));
331 } 331 }
332 332
333 } // namespace aura_shell 333 } // namespace aura_shell
OLDNEW
« no previous file with comments | « ui/aura_shell/examples/example_factory.h ('k') | ui/aura_shell/shell_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698