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

Side by Side Diff: ash/wm/workspace_controller.h

Issue 11293014: Renames Workspace*2 -> Workspace*. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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 | « ash/wm/workspace/workspace_window_resizer_unittest.cc ('k') | ash/wm/workspace_controller.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef ASH_WM_WORKSPACE_CONTROLLER_H_ 5 #ifndef ASH_WM_WORKSPACE_CONTROLLER_H_
6 #define ASH_WM_WORKSPACE_CONTROLLER_H_ 6 #define ASH_WM_WORKSPACE_CONTROLLER_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "ash/wm/workspace/workspace_types.h" 9 #include "ash/wm/workspace/workspace_types.h"
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "ui/aura/client/activation_change_observer.h" 12 #include "ui/aura/client/activation_change_observer.h"
13 13
14 namespace aura { 14 namespace aura {
15 class Window; 15 class Window;
16 } 16 }
17 17
18 namespace ash { 18 namespace ash {
19 namespace internal { 19 namespace internal {
20 20
21 class ShelfLayoutManager; 21 class ShelfLayoutManager;
22 class WorkspaceControllerTestHelper; 22 class WorkspaceControllerTestHelper;
23 class WorkspaceEventHandler; 23 class WorkspaceEventHandler;
24 class WorkspaceManager2; 24 class WorkspaceManager;
25 25
26 // WorkspaceController acts as a central place that ties together all the 26 // WorkspaceController acts as a central place that ties together all the
27 // various workspace pieces. 27 // various workspace pieces.
28 class ASH_EXPORT WorkspaceController 28 class ASH_EXPORT WorkspaceController
29 : public aura::client::ActivationChangeObserver { 29 : public aura::client::ActivationChangeObserver {
30 public: 30 public:
31 explicit WorkspaceController(aura::Window* viewport); 31 explicit WorkspaceController(aura::Window* viewport);
32 virtual ~WorkspaceController(); 32 virtual ~WorkspaceController();
33 33
34 // Returns the current window state. 34 // Returns the current window state.
(...skipping 12 matching lines...) Expand all
47 47
48 // aura::client::ActivationChangeObserver overrides: 48 // aura::client::ActivationChangeObserver overrides:
49 virtual void OnWindowActivated(aura::Window* window, 49 virtual void OnWindowActivated(aura::Window* window,
50 aura::Window* old_active) OVERRIDE; 50 aura::Window* old_active) OVERRIDE;
51 51
52 private: 52 private:
53 friend class WorkspaceControllerTestHelper; 53 friend class WorkspaceControllerTestHelper;
54 54
55 aura::Window* viewport_; 55 aura::Window* viewport_;
56 56
57 scoped_ptr<WorkspaceManager2> workspace_manager_; 57 scoped_ptr<WorkspaceManager> workspace_manager_;
58 58
59 DISALLOW_COPY_AND_ASSIGN(WorkspaceController); 59 DISALLOW_COPY_AND_ASSIGN(WorkspaceController);
60 }; 60 };
61 61
62 } // namespace internal 62 } // namespace internal
63 } // namespace ash 63 } // namespace ash
64 64
65 #endif // ASH_WM_WORKSPACE_CONTROLLER_H_ 65 #endif // ASH_WM_WORKSPACE_CONTROLLER_H_
OLDNEW
« no previous file with comments | « ash/wm/workspace/workspace_window_resizer_unittest.cc ('k') | ash/wm/workspace_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698