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

Unified Diff: chrome/browser/ui/views/extensions/shell_window_views.cc

Issue 9030017: Implement ShellWindow in Views. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: comments Created 8 years, 11 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
« no previous file with comments | « chrome/browser/ui/views/extensions/shell_window_views.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/extensions/shell_window_views.cc
diff --git a/chrome/browser/ui/views/extensions/shell_window_views.cc b/chrome/browser/ui/views/extensions/shell_window_views.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0f2936a315e9ff673debd3c0378078711bbb9775
--- /dev/null
+++ b/chrome/browser/ui/views/extensions/shell_window_views.cc
@@ -0,0 +1,58 @@
+// Copyright (c) 2012 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/views/extensions/shell_window_views.h"
+
+#include "base/utf_string_conversions.h"
+#include "chrome/browser/extensions/extension_host.h"
+#include "chrome/common/extensions/extension.h"
+#include "ui/views/widget/widget.h"
+
+ShellWindowViews::ShellWindowViews(ExtensionHost* host)
+ : ShellWindow(host) {
+ host_->view()->SetContainer(this);
+ window_ = new views::Widget;
+ views::Widget::InitParams params(views::Widget::InitParams::TYPE_WINDOW);
+ params.delegate = this;
+ gfx::Rect bounds(0, 0, 512, 384);
+ params.bounds = bounds;
+ window_->Init(params);
+ window_->Show();
+}
+
+ShellWindowViews::~ShellWindowViews() {
+}
+
+void ShellWindowViews::Close() {
+ window_->Close();
+}
+
+void ShellWindowViews::DeleteDelegate() {
+ delete this;
+}
+
+bool ShellWindowViews::CanResize() const {
+ return true;
+}
+
+views::View* ShellWindowViews::GetContentsView() {
+ return host_->view();
+}
+
+string16 ShellWindowViews::GetWindowTitle() const {
+ return UTF8ToUTF16(host_->extension()->name());
+}
+
+views::Widget* ShellWindowViews::GetWidget() {
+ return window_;
+}
+
+const views::Widget* ShellWindowViews::GetWidget() const {
+ return window_;
+}
+
+// static
+ShellWindow* ShellWindow::CreateShellWindow(ExtensionHost* host) {
+ return new ShellWindowViews(host);
+}
« no previous file with comments | « chrome/browser/ui/views/extensions/shell_window_views.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698