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

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: 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 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) 2012 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 "base/utf_string_conversions.h"
8 #include "chrome/browser/extensions/extension_host.h"
9 #include "chrome/common/extensions/extension.h"
10 #include "ui/views/widget/widget.h"
11
12 ShellWindowViews::ShellWindowViews(ExtensionHost* host)
13 : ShellWindow(host) {
14 host_->view()->SetContainer(this);
15 window_ = new views::Widget;
16 views::Widget::InitParams params(views::Widget::InitParams::TYPE_WINDOW);
17 params.delegate = this;
18 gfx::Rect bounds(0, 0, 512, 384);
19 params.bounds = bounds;
20 window_->Init(params);
21 window_->Show();
22 }
23
24 ShellWindowViews::~ShellWindowViews() {
25 }
26
27 void ShellWindowViews::Close() {
28 window_->Close();
29 }
30
31 void ShellWindowViews::DeleteDelegate() {
32 delete this;
33 }
34
35 bool ShellWindowViews::CanResize() const {
36 return true;
37 }
38
39 views::View* ShellWindowViews::GetContentsView() {
40 return host_->view();
41 }
42
43 string16 ShellWindowViews::GetWindowTitle() const {
44 return UTF8ToUTF16(host_->extension()->name());
45 }
46
47 views::Widget* ShellWindowViews::GetWidget() {
48 return window_;
49 }
50
51 const views::Widget* ShellWindowViews::GetWidget() const {
52 return window_;
53 }
54
55 // static
56 ShellWindow* ShellWindow::CreateShellWindow(ExtensionHost* host) {
57 return new ShellWindowViews(host);
58 }
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