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 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_stub.h" | 5 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_stub.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
9 | 9 |
10 namespace chrome { | 10 namespace chrome { |
(...skipping 25 matching lines...) Expand all Loading... |
36 aura::Window* window, | 36 aura::Window* window, |
37 const std::string& user_id) { | 37 const std::string& user_id) { |
38 return true; | 38 return true; |
39 } | 39 } |
40 | 40 |
41 const std::string& MultiUserWindowManagerStub::GetUserPresentingWindow( | 41 const std::string& MultiUserWindowManagerStub::GetUserPresentingWindow( |
42 aura::Window* window) { | 42 aura::Window* window) { |
43 return base::EmptyString(); | 43 return base::EmptyString(); |
44 } | 44 } |
45 | 45 |
46 void MultiUserWindowManagerStub::AddUser(Profile* profile) { | 46 void MultiUserWindowManagerStub::AddUser(content::BrowserContext* context) { |
47 NOTIMPLEMENTED(); | 47 NOTIMPLEMENTED(); |
48 } | 48 } |
49 | 49 |
50 void MultiUserWindowManagerStub::AddObserver(Observer* observer) { | 50 void MultiUserWindowManagerStub::AddObserver(Observer* observer) { |
51 NOTIMPLEMENTED(); | 51 NOTIMPLEMENTED(); |
52 } | 52 } |
53 | 53 |
54 void MultiUserWindowManagerStub::RemoveObserver(Observer* observer) { | 54 void MultiUserWindowManagerStub::RemoveObserver(Observer* observer) { |
55 NOTIMPLEMENTED(); | 55 NOTIMPLEMENTED(); |
56 } | 56 } |
57 | 57 |
58 } // namespace chrome | 58 } // namespace chrome |
OLD | NEW |