Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / ui / ash / multi_user / multi_user_window_manager_stub.cc
blob17b6c3c317126857b139cd81605f21aece89696a
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
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_stub.h"
7 #include "base/logging.h"
8 #include "base/strings/string_util.h"
10 namespace chrome {
12 void MultiUserWindowManagerStub::SetWindowOwner(aura::Window* window,
13 const std::string& user_id) {
14 NOTIMPLEMENTED();
17 const std::string& MultiUserWindowManagerStub::GetWindowOwner(
18 aura::Window* window) {
19 return base::EmptyString();
22 void MultiUserWindowManagerStub::ShowWindowForUser(aura::Window* window,
23 const std::string& user_id) {
24 NOTIMPLEMENTED();
27 bool MultiUserWindowManagerStub::AreWindowsSharedAmongUsers() {
28 return false;
31 void MultiUserWindowManagerStub::GetOwnersOfVisibleWindows(
32 std::set<std::string>* user_ids) {
35 bool MultiUserWindowManagerStub::IsWindowOnDesktopOfUser(
36 aura::Window* window,
37 const std::string& user_id) {
38 return true;
41 const std::string& MultiUserWindowManagerStub::GetUserPresentingWindow(
42 aura::Window* window) {
43 return base::EmptyString();
46 void MultiUserWindowManagerStub::AddUser(Profile* profile) {
47 NOTIMPLEMENTED();
50 } // namespace chrome