| 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 #include "components/signin/core/account_id/account_id.h" | 9 #include "components/signin/core/account_id/account_id.h" |
| 10 | 10 |
| 11 namespace chrome { | 11 namespace chrome { |
| 12 | 12 |
| 13 MultiUserWindowManagerStub::MultiUserWindowManagerStub() {} |
| 14 |
| 15 MultiUserWindowManagerStub::~MultiUserWindowManagerStub() {} |
| 16 |
| 13 void MultiUserWindowManagerStub::SetWindowOwner(aura::Window* window, | 17 void MultiUserWindowManagerStub::SetWindowOwner(aura::Window* window, |
| 14 const AccountId& account_id) { | 18 const AccountId& account_id) { |
| 15 NOTIMPLEMENTED(); | 19 NOTIMPLEMENTED(); |
| 16 } | 20 } |
| 17 | 21 |
| 18 const AccountId& MultiUserWindowManagerStub::GetWindowOwner( | 22 const AccountId& MultiUserWindowManagerStub::GetWindowOwner( |
| 19 aura::Window* window) const { | 23 aura::Window* window) const { |
| 20 return EmptyAccountId(); | 24 return EmptyAccountId(); |
| 21 } | 25 } |
| 22 | 26 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 50 | 54 |
| 51 void MultiUserWindowManagerStub::AddObserver(Observer* observer) { | 55 void MultiUserWindowManagerStub::AddObserver(Observer* observer) { |
| 52 NOTIMPLEMENTED(); | 56 NOTIMPLEMENTED(); |
| 53 } | 57 } |
| 54 | 58 |
| 55 void MultiUserWindowManagerStub::RemoveObserver(Observer* observer) { | 59 void MultiUserWindowManagerStub::RemoveObserver(Observer* observer) { |
| 56 NOTIMPLEMENTED(); | 60 NOTIMPLEMENTED(); |
| 57 } | 61 } |
| 58 | 62 |
| 59 } // namespace chrome | 63 } // namespace chrome |
| OLD | NEW |