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

Unified Diff: apps/shell/browser/shell_app_window_delegate.cc

Issue 166833004: Add support for chrome.app.window.create() to app_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase (shell_app_window) Created 6 years, 10 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: apps/shell/browser/shell_app_window_delegate.cc
diff --git a/apps/shell/browser/shell_app_window_delegate.cc b/apps/shell/browser/shell_app_window_delegate.cc
new file mode 100644
index 0000000000000000000000000000000000000000..11b0f831ea799c76555ed66c4e31a6d5ef4729f7
--- /dev/null
+++ b/apps/shell/browser/shell_app_window_delegate.cc
@@ -0,0 +1,81 @@
+// Copyright 2014 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 "apps/shell/browser/shell_app_window_delegate.h"
+
+#include "apps/ui/views/base_native_app_window_views.h"
+#include "content/public/browser/web_contents.h"
+#include "content/public/browser/web_contents_view.h"
+#include "ui/aura/window.h"
+
+namespace apps {
+
+ShellAppWindowDelegate::ShellAppWindowDelegate() {}
+
+ShellAppWindowDelegate::~ShellAppWindowDelegate() {}
+
+void ShellAppWindowDelegate::InitWebContents(
+ content::WebContents* web_contents) {}
+
+NativeAppWindow* ShellAppWindowDelegate::CreateNativeAppWindow(
+ AppWindow* window,
+ const AppWindow::CreateParams& params) {
+ BaseNativeAppWindowViews* native_app_window = new BaseNativeAppWindowViews;
+ native_app_window->Init(window, params);
+ return native_app_window;
+}
+
+content::WebContents* ShellAppWindowDelegate::OpenURLFromTab(
+ content::BrowserContext* context,
+ content::WebContents* source,
+ const content::OpenURLParams& params) {
+ return NULL;
+}
+
+void ShellAppWindowDelegate::AddNewContents(content::BrowserContext* context,
+ content::WebContents* new_contents,
+ WindowOpenDisposition disposition,
+ const gfx::Rect& initial_pos,
+ bool user_gesture,
+ bool* was_blocked) {
+ LOG(ERROR) << "app_shell does not support opening a new tab/window.";
+}
+
+content::ColorChooser* ShellAppWindowDelegate::ShowColorChooser(
+ content::WebContents* web_contents,
+ SkColor initial_color) {
+ return NULL;
+}
+
+void ShellAppWindowDelegate::RunFileChooser(
+ content::WebContents* tab,
+ const content::FileChooserParams& params) {
+ LOG(ERROR) << "app_shell does not support file pickers.";
+}
+
+void ShellAppWindowDelegate::RequestMediaAccessPermission(
+ content::WebContents* web_contents,
+ const content::MediaStreamRequest& request,
+ const content::MediaResponseCallback& callback,
+ const extensions::Extension* extension) {
+ // TODO(jamescook): Support media capture.
+ LOG(ERROR) << "app_shell does not support media capture.";
+}
+
+int ShellAppWindowDelegate::PreferredIconSize() {
+ // Pick an arbitrary size.
+ return 32;
+}
+
+void ShellAppWindowDelegate::SetWebContentsBlocked(
+ content::WebContents* web_contents,
+ bool blocked) {}
+
+bool ShellAppWindowDelegate::IsWebContentsVisible(
+ content::WebContents* web_contents) {
+ aura::Window* native_window = web_contents->GetView()->GetNativeView();
+ return native_window->IsVisible();
+}
+
+} // namespace apps

Powered by Google App Engine
This is Rietveld 408576698