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

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

Issue 696063008: Refactor ShellDesktopController and ShellNativeAppWindow to allow for non-aura implementations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: + Created 6 years, 1 month 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_app_window_client.cc b/extensions/shell/browser/shell_app_window_client.cc
index 293f58b91c7dc427f5c2bc6f0638ef2a2daafaad..8ad167073386540661e6eec64a2cf449072a70dc 100644
--- a/extensions/shell/browser/shell_app_window_client.cc
+++ b/extensions/shell/browser/shell_app_window_client.cc
@@ -8,7 +8,6 @@
#include "extensions/browser/app_window/app_window.h"
#include "extensions/shell/browser/desktop_controller.h"
-#include "extensions/shell/browser/shell_native_app_window.h"
namespace extensions {
@@ -24,16 +23,6 @@ AppWindow* ShellAppWindowClient::CreateAppWindow(
return DesktopController::instance()->CreateAppWindow(context, extension);
}
-NativeAppWindow* ShellAppWindowClient::CreateNativeAppWindow(
- AppWindow* window,
- AppWindow::CreateParams* params) {
- ShellNativeAppWindow* native_app_window =
- new ShellNativeAppWindow(window, *params);
- DesktopController::instance()->AddAppWindow(
- native_app_window->GetNativeWindow());
- return native_app_window;
-}
-
void ShellAppWindowClient::OpenDevToolsWindow(
content::WebContents* web_contents,
const base::Closure& callback) {
« no previous file with comments | « extensions/shell/browser/shell_app_window_client.h ('k') | extensions/shell/browser/shell_app_window_client_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698