Home | History | Annotate | Download | only in app_window

Lines Matching defs:AppWindowRegistry

32     const AppWindowRegistry* registry,
50 void AppWindowRegistry::Observer::OnAppWindowAdded(AppWindow* app_window) {
53 void AppWindowRegistry::Observer::OnAppWindowIconChanged(
57 void AppWindowRegistry::Observer::OnAppWindowRemoved(AppWindow* app_window) {
60 void AppWindowRegistry::Observer::OnAppWindowHidden(AppWindow* app_window) {
63 void AppWindowRegistry::Observer::OnAppWindowShown(AppWindow* app_window) {
66 AppWindowRegistry::Observer::~Observer() {
69 AppWindowRegistry::AppWindowRegistry(content::BrowserContext* context)
71 devtools_callback_(base::Bind(&AppWindowRegistry::OnDevToolsStateChanged,
76 AppWindowRegistry::~AppWindowRegistry() {
81 AppWindowRegistry* AppWindowRegistry::Get(content::BrowserContext* context) {
85 void AppWindowRegistry::AddAppWindow(AppWindow* app_window) {
90 void AppWindowRegistry::AppWindowIconChanged(AppWindow* app_window) {
95 void AppWindowRegistry::AppWindowActivated(AppWindow* app_window) {
99 void AppWindowRegistry::AppWindowHidden(AppWindow* app_window) {
103 void AppWindowRegistry::AppWindowShown(AppWindow* app_window) {
107 void AppWindowRegistry::RemoveAppWindow(AppWindow* app_window) {
115 void AppWindowRegistry::AddObserver(Observer* observer) {
119 void AppWindowRegistry::RemoveObserver(Observer* observer) {
123 AppWindowRegistry::AppWindowList AppWindowRegistry::GetAppWindowsForApp(
135 void AppWindowRegistry::CloseAllAppWindowsForApp(const std::string& app_id) {
137 for (AppWindowRegistry::const_iterator it = windows.begin();
144 AppWindow* AppWindowRegistry::GetAppWindowForRenderViewHost(
156 AppWindow* AppWindowRegistry::GetAppWindowForNativeWindow(
168 AppWindow* AppWindowRegistry::GetCurrentAppWindowForApp(
184 AppWindow* AppWindowRegistry::GetAppWindowForAppAndKey(
200 bool AppWindowRegistry::HadDevToolsAttached(
206 void AppWindowRegistry::OnDevToolsStateChanged(
225 void AppWindowRegistry::AddAppWindowToList(AppWindow* app_window) {
233 void AppWindowRegistry::BringToFront(AppWindow* app_window) {
245 AppWindowRegistry* AppWindowRegistry::Factory::GetForBrowserContext(
248 return static_cast<AppWindowRegistry*>(
252 AppWindowRegistry::Factory* AppWindowRegistry::Factory::GetInstance() {
253 return Singleton<AppWindowRegistry::Factory>::get();
256 AppWindowRegistry::Factory::Factory()
258 "AppWindowRegistry",
261 AppWindowRegistry::Factory::~Factory() {}
263 KeyedService* AppWindowRegistry::Factory::BuildServiceInstanceFor(
265 return new AppWindowRegistry(context);
268 bool AppWindowRegistry::Factory::ServiceIsCreatedWithBrowserContext() const {
272 bool AppWindowRegistry::Factory::ServiceIsNULLWhileTesting() const {
276 content::BrowserContext* AppWindowRegistry::Factory::GetBrowserContextToUse(