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