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

Unified Diff: chrome/browser/ui/apps/chrome_apps_client.h

Issue 583583008: Rename AppsClient -> AppWindowClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac & test 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: chrome/browser/ui/apps/chrome_apps_client.h
diff --git a/chrome/browser/ui/apps/chrome_apps_client.h b/chrome/browser/ui/apps/chrome_apps_client.h
deleted file mode 100644
index cda63019aad82123195870e45903827d3e31f032..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/apps/chrome_apps_client.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_UI_APPS_CHROME_APPS_CLIENT_H_
-#define CHROME_BROWSER_UI_APPS_CHROME_APPS_CLIENT_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "extensions/browser/app_window/apps_client.h"
-
-template <typename T>
-struct DefaultSingletonTraits;
-
-// The implementation of AppsClient for Chrome.
-class ChromeAppsClient : public extensions::AppsClient {
- public:
- ChromeAppsClient();
- virtual ~ChromeAppsClient();
-
- // Get the LazyInstance for ChromeAppsClient.
- static ChromeAppsClient* GetInstance();
-
- private:
- friend struct DefaultSingletonTraits<ChromeAppsClient>;
-
- // extensions::AppsClient
- virtual std::vector<content::BrowserContext*> GetLoadedBrowserContexts()
- OVERRIDE;
- virtual extensions::AppWindow* CreateAppWindow(
- content::BrowserContext* context,
- const extensions::Extension* extension) OVERRIDE;
- virtual extensions::NativeAppWindow* CreateNativeAppWindow(
- extensions::AppWindow* window,
- const extensions::AppWindow::CreateParams& params) OVERRIDE;
- virtual void IncrementKeepAliveCount() OVERRIDE;
- virtual void DecrementKeepAliveCount() OVERRIDE;
- virtual void OpenDevToolsWindow(content::WebContents* web_contents,
- const base::Closure& callback) OVERRIDE;
- virtual bool IsCurrentChannelOlderThanDev() OVERRIDE;
-
- // Implemented in platform specific code.
- static extensions::NativeAppWindow* CreateNativeAppWindowImpl(
- extensions::AppWindow* window,
- const extensions::AppWindow::CreateParams& params);
-
- DISALLOW_COPY_AND_ASSIGN(ChromeAppsClient);
-};
-
-#endif // CHROME_BROWSER_UI_APPS_CHROME_APPS_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698