Index: chrome/browser/ui/views/apps/chrome_shell_window_delegate_views.cc |
diff --git a/chrome/browser/ui/views/apps/chrome_shell_window_delegate_views.cc b/chrome/browser/ui/views/apps/chrome_shell_window_delegate_views.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d3d5099f76a34b0e36ede1870ba32a4f9786712a |
--- /dev/null |
+++ b/chrome/browser/ui/views/apps/chrome_shell_window_delegate_views.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/views/apps/native_app_window_views.h" |
+ |
+// static |
+apps::NativeAppWindow* ChromeShellWindowDelegate::CreateNativeAppWindowImpl( |
+ apps::ShellWindow* shell_window, |
+ const apps::ShellWindow::CreateParams& params) { |
+ return new NativeAppWindowViews(shell_window, params); |
+} |