OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/chromeos/login/login_html_dialog.h" | 5 #include "chrome/browser/chromeos/login/login_html_dialog.h" |
6 | 6 |
7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
8 #include "chrome/browser/chromeos/login/helper.h" | 8 #include "chrome/browser/chromeos/login/helper.h" |
9 #include "chrome/browser/profiles/profile_manager.h" | 9 #include "chrome/browser/profiles/profile_manager.h" |
10 #include "chrome/browser/ui/views/html_dialog_view.h" | 10 #include "chrome/browser/ui/views/web_dialog_view.h" |
11 #include "content/public/browser/notification_source.h" | 11 #include "content/public/browser/notification_source.h" |
12 #include "content/public/browser/notification_types.h" | 12 #include "content/public/browser/notification_types.h" |
13 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
14 #include "ui/gfx/rect.h" | 14 #include "ui/gfx/rect.h" |
15 #include "ui/gfx/size.h" | 15 #include "ui/gfx/size.h" |
16 #include "ui/views/widget/widget.h" | 16 #include "ui/views/widget/widget.h" |
17 | 17 |
18 using content::WebContents; | 18 using content::WebContents; |
19 using content::WebUIMessageHandler; | 19 using content::WebUIMessageHandler; |
20 | 20 |
(...skipping 29 matching lines...) Expand all Loading... |
50 width_ = static_cast<int>(kDefaultWidthRatio * screen_bounds.width()); | 50 width_ = static_cast<int>(kDefaultWidthRatio * screen_bounds.width()); |
51 height_ = static_cast<int>(kDefaultHeightRatio * screen_bounds.height()); | 51 height_ = static_cast<int>(kDefaultHeightRatio * screen_bounds.height()); |
52 } | 52 } |
53 | 53 |
54 LoginHtmlDialog::~LoginHtmlDialog() { | 54 LoginHtmlDialog::~LoginHtmlDialog() { |
55 delegate_ = NULL; | 55 delegate_ = NULL; |
56 } | 56 } |
57 | 57 |
58 void LoginHtmlDialog::Show() { | 58 void LoginHtmlDialog::Show() { |
59 views::Widget::CreateWindowWithParent( | 59 views::Widget::CreateWindowWithParent( |
60 new HtmlDialogView(ProfileManager::GetDefaultProfile(), NULL, this), | 60 new WebDialogView(ProfileManager::GetDefaultProfile(), NULL, this), |
61 parent_window_)->Show(); | 61 parent_window_)->Show(); |
62 is_open_ = true; | 62 is_open_ = true; |
63 } | 63 } |
64 | 64 |
65 void LoginHtmlDialog::SetDialogSize(int width, int height) { | 65 void LoginHtmlDialog::SetDialogSize(int width, int height) { |
66 DCHECK(width >= 0 && height >= 0); | 66 DCHECK(width >= 0 && height >= 0); |
67 width_ = width; | 67 width_ = width; |
68 height_ = height; | 68 height_ = height; |
69 } | 69 } |
70 | 70 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 | 124 |
125 void LoginHtmlDialog::Observe(int type, | 125 void LoginHtmlDialog::Observe(int type, |
126 const content::NotificationSource& source, | 126 const content::NotificationSource& source, |
127 const content::NotificationDetails& details) { | 127 const content::NotificationDetails& details) { |
128 DCHECK(type == content::NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME); | 128 DCHECK(type == content::NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME); |
129 // TODO(saintlou): Do we need a throbber for Aura? | 129 // TODO(saintlou): Do we need a throbber for Aura? |
130 NOTIMPLEMENTED(); | 130 NOTIMPLEMENTED(); |
131 } | 131 } |
132 | 132 |
133 } // namespace chromeos | 133 } // namespace chromeos |
OLD | NEW |