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

Side by Side 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: 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/views/extensions/shell_window_views.h"
6
7 #include "chrome/browser/extensions/extension_host.h"
8 #include "content/browser/renderer_host/render_widget_host_view_win.h"
9 #include "ui/views/widget/widget.h"
10
11 ShellWindowViews::ShellWindowViews(ExtensionHost* host)
12 : ShellWindow(host) {
13 host_->view()->SetContainer(this);
14 window_ = new views::Widget;
15 views::Widget::InitParams params(views::Widget::InitParams::TYPE_WINDOW);
16 params.can_activate = true;
17 params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
18 params.parent = NULL;
19 params.delegate = this;
20 gfx::Rect bounds(0, 0, 512, 384);
21 params.bounds = bounds;
22 params.top_level = true;
23 window_->Init(params);
24 window_->Show();
25 }
26
27 ShellWindowViews::~ShellWindowViews() {
28 }
29
30 void ShellWindowViews::Close() {
31 delete window_; // TODO(jeremya): is this the right way to destroy a Widget?
32 delete this;
33 }
34
35 views::View* ShellWindowViews::GetContentsView() {
36 return host_->view();
37 }
38
39 views::Widget* ShellWindowViews::GetWidget() {
40 return window_;
41 }
42 const views::Widget* ShellWindowViews::GetWidget() const {
43 return window_;
44 }
45
46 // TODO(jeremya): destroy when window closes?
Mihai Parparita -not on Chrome 2012/01/06 23:26:50 I think you'll want to override DeleteDelegate and
jeremya 2012/01/12 01:46:04 Done.
OLDNEW
« 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