Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(914)

Unified Diff: extensions/browser/app_window/app_window_registry.cc

Issue 586613002: Remove AppsClient::GetLoadedBrowserContexts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move to chrome/browser/apps Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: extensions/browser/app_window/app_window_registry.cc
diff --git a/extensions/browser/app_window/app_window_registry.cc b/extensions/browser/app_window/app_window_registry.cc
index 9cd72e967d5cd56cd09f78d23d600b73b5aae222..48397f5f465bace2d24264109d852b029371c6d5 100644
--- a/extensions/browser/app_window/app_window_registry.cc
+++ b/extensions/browser/app_window/app_window_registry.cc
@@ -15,7 +15,6 @@
#include "content/public/browser/site_instance.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/app_window/app_window.h"
-#include "extensions/browser/app_window/app_window_client.h"
#include "extensions/browser/app_window/native_app_window.h"
#include "extensions/browser/extensions_browser_client.h"
#include "extensions/common/extension.h"
@@ -204,76 +203,6 @@ bool AppWindowRegistry::HadDevToolsAttached(
return key.empty() ? false : inspected_windows_.count(key) != 0;
}
-// static
-AppWindow* AppWindowRegistry::GetAppWindowForNativeWindowAnyProfile(
- gfx::NativeWindow window) {
- std::vector<content::BrowserContext*> contexts =
- AppWindowClient::Get()->GetLoadedBrowserContexts();
- for (std::vector<content::BrowserContext*>::const_iterator i =
- contexts.begin();
- i != contexts.end();
- ++i) {
- AppWindowRegistry* registry =
- Factory::GetForBrowserContext(*i, false /* create */);
- if (!registry)
- continue;
-
- AppWindow* app_window = registry->GetAppWindowForNativeWindow(window);
- if (app_window)
- return app_window;
- }
-
- return NULL;
-}
-
-// static
-bool AppWindowRegistry::IsAppWindowRegisteredInAnyProfile(
- int window_type_mask) {
- std::vector<content::BrowserContext*> contexts =
- AppWindowClient::Get()->GetLoadedBrowserContexts();
- for (std::vector<content::BrowserContext*>::const_iterator i =
- contexts.begin();
- i != contexts.end();
- ++i) {
- AppWindowRegistry* registry =
- Factory::GetForBrowserContext(*i, false /* create */);
- if (!registry)
- continue;
-
- const AppWindowList& app_windows = registry->app_windows();
- if (app_windows.empty())
- continue;
-
- if (window_type_mask == 0)
- return true;
-
- for (const_iterator j = app_windows.begin(); j != app_windows.end(); ++j) {
- if ((*j)->window_type() & window_type_mask)
- return true;
- }
- }
-
- return false;
-}
-
-// static
-void AppWindowRegistry::CloseAllAppWindows() {
- std::vector<content::BrowserContext*> contexts =
- AppWindowClient::Get()->GetLoadedBrowserContexts();
- for (std::vector<content::BrowserContext*>::const_iterator i =
- contexts.begin();
- i != contexts.end();
- ++i) {
- AppWindowRegistry* registry =
- Factory::GetForBrowserContext(*i, false /* create */);
- if (!registry)
- continue;
-
- while (!registry->app_windows().empty())
- registry->app_windows().front()->GetBaseWindow()->Close();
- }
-}
-
void AppWindowRegistry::OnDevToolsStateChanged(
content::DevToolsAgentHost* agent_host,
bool attached) {

Powered by Google App Engine
This is Rietveld 408576698