OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ |
6 #define CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ | 6 #define CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" | 13 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" |
14 | 14 |
15 namespace chrome { | 15 namespace chrome { |
16 | 16 |
17 // This is the implementation of MultiUserWindowManager for single user mode. | 17 // This is the implementation of MultiUserWindowManager for single user mode. |
18 class MultiUserWindowManagerStub : public MultiUserWindowManager { | 18 class MultiUserWindowManagerStub : public MultiUserWindowManager { |
19 public: | 19 public: |
20 MultiUserWindowManagerStub() {} | 20 MultiUserWindowManagerStub() {} |
21 virtual ~MultiUserWindowManagerStub() {} | 21 ~MultiUserWindowManagerStub() override {} |
22 | 22 |
23 // MultiUserWindowManager overrides: | 23 // MultiUserWindowManager overrides: |
24 virtual void SetWindowOwner( | 24 void SetWindowOwner(aura::Window* window, |
25 aura::Window* window, const std::string& user_id) override; | 25 const std::string& user_id) override; |
26 virtual const std::string& GetWindowOwner( | 26 const std::string& GetWindowOwner(aura::Window* window) const override; |
| 27 void ShowWindowForUser(aura::Window* window, |
| 28 const std::string& user_id) override; |
| 29 bool AreWindowsSharedAmongUsers() const override; |
| 30 void GetOwnersOfVisibleWindows( |
| 31 std::set<std::string>* user_ids) const override; |
| 32 bool IsWindowOnDesktopOfUser(aura::Window* window, |
| 33 const std::string& user_id) const override; |
| 34 const std::string& GetUserPresentingWindow( |
27 aura::Window* window) const override; | 35 aura::Window* window) const override; |
28 virtual void ShowWindowForUser( | 36 void AddUser(content::BrowserContext* context) override; |
29 aura::Window* window, const std::string& user_id) override; | 37 void AddObserver(Observer* observer) override; |
30 virtual bool AreWindowsSharedAmongUsers() const override; | 38 void RemoveObserver(Observer* observer) override; |
31 virtual void GetOwnersOfVisibleWindows( | |
32 std::set<std::string>* user_ids) const override; | |
33 virtual bool IsWindowOnDesktopOfUser( | |
34 aura::Window* window, | |
35 const std::string& user_id) const override; | |
36 virtual const std::string& GetUserPresentingWindow( | |
37 aura::Window* window) const override; | |
38 virtual void AddUser(content::BrowserContext* context) override; | |
39 virtual void AddObserver(Observer* observer) override; | |
40 virtual void RemoveObserver(Observer* observer) override; | |
41 | 39 |
42 private: | 40 private: |
43 DISALLOW_COPY_AND_ASSIGN(MultiUserWindowManagerStub); | 41 DISALLOW_COPY_AND_ASSIGN(MultiUserWindowManagerStub); |
44 }; | 42 }; |
45 | 43 |
46 } // namespace chrome | 44 } // namespace chrome |
47 | 45 |
48 #endif // CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ | 46 #endif // CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ |
OLD | NEW |