OLD | NEW |
(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 } |
OLD | NEW |