OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "apps/shell_window.h" | 5 #include "apps/shell_window.h" |
6 #include "chrome/browser/browser_process.h" | 6 #include "chrome/browser/browser_process.h" |
7 #include "chrome/browser/extensions/shell_window_registry.h" | 7 #include "chrome/browser/extensions/shell_window_registry.h" |
8 #include "chrome/browser/profiles/incognito_helpers.h" | 8 #include "chrome/browser/profiles/incognito_helpers.h" |
9 #include "chrome/browser/profiles/profile_manager.h" | 9 #include "chrome/browser/profiles/profile_manager.h" |
10 #include "chrome/browser/ui/extensions/native_app_window.h" | 10 #include "chrome/browser/ui/extensions/native_app_window.h" |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 } | 78 } |
79 | 79 |
80 void ShellWindowRegistry::ShellWindowActivated(ShellWindow* shell_window) { | 80 void ShellWindowRegistry::ShellWindowActivated(ShellWindow* shell_window) { |
81 BringToFront(shell_window); | 81 BringToFront(shell_window); |
82 } | 82 } |
83 | 83 |
84 void ShellWindowRegistry::RemoveShellWindow(ShellWindow* shell_window) { | 84 void ShellWindowRegistry::RemoveShellWindow(ShellWindow* shell_window) { |
85 const ShellWindowList::iterator it = std::find(shell_windows_.begin(), | 85 const ShellWindowList::iterator it = std::find(shell_windows_.begin(), |
86 shell_windows_.end(), | 86 shell_windows_.end(), |
87 shell_window); | 87 shell_window); |
88 if (it != shell_windows_.end()) | 88 if (it != shell_windows_.end()) { |
89 shell_windows_.erase(it); | 89 shell_windows_.erase(it); |
90 FOR_EACH_OBSERVER(Observer, observers_, OnShellWindowRemoved(shell_window)); | 90 FOR_EACH_OBSERVER(Observer, observers_, OnShellWindowRemoved(shell_window)); |
| 91 } |
91 } | 92 } |
92 | 93 |
93 void ShellWindowRegistry::AddObserver(Observer* observer) { | 94 void ShellWindowRegistry::AddObserver(Observer* observer) { |
94 observers_.AddObserver(observer); | 95 observers_.AddObserver(observer); |
95 } | 96 } |
96 | 97 |
97 void ShellWindowRegistry::RemoveObserver(Observer* observer) { | 98 void ShellWindowRegistry::RemoveObserver(Observer* observer) { |
98 observers_.RemoveObserver(observer); | 99 observers_.RemoveObserver(observer); |
99 } | 100 } |
100 | 101 |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 bool ShellWindowRegistry::Factory::ServiceIsNULLWhileTesting() const { | 298 bool ShellWindowRegistry::Factory::ServiceIsNULLWhileTesting() const { |
298 return false; | 299 return false; |
299 } | 300 } |
300 | 301 |
301 content::BrowserContext* ShellWindowRegistry::Factory::GetBrowserContextToUse( | 302 content::BrowserContext* ShellWindowRegistry::Factory::GetBrowserContextToUse( |
302 content::BrowserContext* context) const { | 303 content::BrowserContext* context) const { |
303 return chrome::GetBrowserContextRedirectedInIncognito(context); | 304 return chrome::GetBrowserContextRedirectedInIncognito(context); |
304 } | 305 } |
305 | 306 |
306 } // namespace extensions | 307 } // namespace extensions |
OLD | NEW |