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 class AccountId; |
| 16 |
15 namespace chrome { | 17 namespace chrome { |
16 | 18 |
17 // This is the implementation of MultiUserWindowManager for single user mode. | 19 // This is the implementation of MultiUserWindowManager for single user mode. |
18 class MultiUserWindowManagerStub : public MultiUserWindowManager { | 20 class MultiUserWindowManagerStub : public MultiUserWindowManager { |
19 public: | 21 public: |
20 MultiUserWindowManagerStub() {} | 22 MultiUserWindowManagerStub() {} |
21 ~MultiUserWindowManagerStub() override {} | 23 ~MultiUserWindowManagerStub() override {} |
22 | 24 |
23 // MultiUserWindowManager overrides: | 25 // MultiUserWindowManager overrides: |
24 void SetWindowOwner(aura::Window* window, | 26 void SetWindowOwner(aura::Window* window, |
25 const std::string& user_id) override; | 27 const AccountId& account_id) override; |
26 const std::string& GetWindowOwner(aura::Window* window) const override; | 28 const AccountId& GetWindowOwner(aura::Window* window) const override; |
27 void ShowWindowForUser(aura::Window* window, | 29 void ShowWindowForUser(aura::Window* window, |
28 const std::string& user_id) override; | 30 const AccountId& account_id) override; |
29 bool AreWindowsSharedAmongUsers() const override; | 31 bool AreWindowsSharedAmongUsers() const override; |
30 void GetOwnersOfVisibleWindows( | 32 void GetOwnersOfVisibleWindows( |
31 std::set<std::string>* user_ids) const override; | 33 std::set<AccountId>* account_ids) const override; |
32 bool IsWindowOnDesktopOfUser(aura::Window* window, | 34 bool IsWindowOnDesktopOfUser(aura::Window* window, |
33 const std::string& user_id) const override; | 35 const AccountId& account_id) const override; |
34 const std::string& GetUserPresentingWindow( | 36 const AccountId& GetUserPresentingWindow(aura::Window* window) const override; |
35 aura::Window* window) const override; | |
36 void AddUser(content::BrowserContext* context) override; | 37 void AddUser(content::BrowserContext* context) override; |
37 void AddObserver(Observer* observer) override; | 38 void AddObserver(Observer* observer) override; |
38 void RemoveObserver(Observer* observer) override; | 39 void RemoveObserver(Observer* observer) override; |
39 | 40 |
40 private: | 41 private: |
41 DISALLOW_COPY_AND_ASSIGN(MultiUserWindowManagerStub); | 42 DISALLOW_COPY_AND_ASSIGN(MultiUserWindowManagerStub); |
42 }; | 43 }; |
43 | 44 |
44 } // namespace chrome | 45 } // namespace chrome |
45 | 46 |
46 #endif // CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ | 47 #endif // CHROME_BROWSER_UI_ASH_MULTI_USER_MULTI_USER_WINDOW_MANAGER_STUB_H_ |
OLD | NEW |