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

Unified Diff: chrome/browser/ui/gtk/apps/chrome_shell_window_delegate_gtk.cc

Issue 21344002: Move native_app_window code to apps areas (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to after mac app shim fix Created 7 years, 4 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/gtk/apps/chrome_shell_window_delegate_gtk.cc
diff --git a/chrome/browser/ui/gtk/apps/chrome_shell_window_delegate_gtk.cc b/chrome/browser/ui/gtk/apps/chrome_shell_window_delegate_gtk.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6f18d8c2693cb299ef8423ef602be69bb6cd7116
--- /dev/null
+++ b/chrome/browser/ui/gtk/apps/chrome_shell_window_delegate_gtk.cc
@@ -0,0 +1,14 @@
+// Copyright 2013 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.
+
+#include "chrome/browser/ui/apps/chrome_shell_window_delegate.h"
+
+#include "chrome/browser/ui/gtk/apps/native_app_window_gtk.h"
+
+// static
+apps::NativeAppWindow* ChromeShellWindowDelegate::CreateNativeAppWindowImpl(
+ apps::ShellWindow* shell_window,
+ const apps::ShellWindow::CreateParams& params) {
+ return new NativeAppWindowGtk(shell_window, params);
+}
« no previous file with comments | « chrome/browser/ui/extensions/native_app_window.h ('k') | chrome/browser/ui/gtk/apps/native_app_window_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698