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

Unified Diff: extensions/shell/browser/shell_app_window_client.cc

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: extensions/shell/browser/shell_app_window_client.cc
diff --git a/extensions/shell/browser/shell_apps_client.cc b/extensions/shell/browser/shell_app_window_client.cc
similarity index 58%
rename from extensions/shell/browser/shell_apps_client.cc
rename to extensions/shell/browser/shell_app_window_client.cc
index bbb8386e76ef492d69d69bf493d61678ce1782f0..90287a601fbfd2751ebdd389a92263bba42d672b 100644
--- a/extensions/shell/browser/shell_apps_client.cc
+++ b/extensions/shell/browser/shell_app_window_client.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "extensions/shell/browser/shell_apps_client.h"
+#include "extensions/shell/browser/shell_app_window_client.h"
#include "extensions/browser/app_window/app_window.h"
#include "extensions/shell/browser/desktop_controller.h"
@@ -10,24 +10,25 @@
namespace extensions {
-ShellAppsClient::ShellAppsClient() {
+ShellAppWindowClient::ShellAppWindowClient() {
}
-ShellAppsClient::~ShellAppsClient() {
+ShellAppWindowClient::~ShellAppWindowClient() {
}
std::vector<content::BrowserContext*>
-ShellAppsClient::GetLoadedBrowserContexts() {
+ShellAppWindowClient::GetLoadedBrowserContexts() {
NOTIMPLEMENTED();
return std::vector<content::BrowserContext*>();
}
-AppWindow* ShellAppsClient::CreateAppWindow(content::BrowserContext* context,
- const Extension* extension) {
+AppWindow* ShellAppWindowClient::CreateAppWindow(
+ content::BrowserContext* context,
+ const Extension* extension) {
return DesktopController::instance()->CreateAppWindow(context, extension);
}
-NativeAppWindow* ShellAppsClient::CreateNativeAppWindow(
+NativeAppWindow* ShellAppWindowClient::CreateNativeAppWindow(
AppWindow* window,
const AppWindow::CreateParams& params) {
ShellNativeAppWindow* native_app_window =
@@ -37,20 +38,21 @@ NativeAppWindow* ShellAppsClient::CreateNativeAppWindow(
return native_app_window;
}
-void ShellAppsClient::IncrementKeepAliveCount() {
+void ShellAppWindowClient::IncrementKeepAliveCount() {
NOTIMPLEMENTED();
}
-void ShellAppsClient::DecrementKeepAliveCount() {
+void ShellAppWindowClient::DecrementKeepAliveCount() {
NOTIMPLEMENTED();
}
-void ShellAppsClient::OpenDevToolsWindow(content::WebContents* web_contents,
- const base::Closure& callback) {
+void ShellAppWindowClient::OpenDevToolsWindow(
+ content::WebContents* web_contents,
+ const base::Closure& callback) {
NOTIMPLEMENTED();
}
-bool ShellAppsClient::IsCurrentChannelOlderThanDev() {
+bool ShellAppWindowClient::IsCurrentChannelOlderThanDev() {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698