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); |
+} |