| 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_HTML_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_WEB_DIALOG_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_HTML_DIALOG_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_WEB_DIALOG_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/ui/webui/web_dialog_ui.h" | 12 #include "chrome/browser/ui/webui/web_dialog_ui.h" |
| 13 #include "content/public/browser/notification_observer.h" | 13 #include "content/public/browser/notification_observer.h" |
| 14 #include "content/public/browser/notification_registrar.h" | 14 #include "content/public/browser/notification_registrar.h" |
| 15 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
| 16 #include "ui/gfx/size.h" | 16 #include "ui/gfx/size.h" |
| 17 | 17 |
| 18 namespace chromeos { | 18 namespace chromeos { |
| 19 | 19 |
| 20 class BubbleFrameView; | 20 class BubbleFrameView; |
| 21 | 21 |
| 22 // Launches web dialog during OOBE/Login with specified URL and title. | 22 // Launches web dialog during OOBE/Login with specified URL and title. |
| 23 class LoginHtmlDialog : public WebDialogDelegate, | 23 class LoginWebDialog : public WebDialogDelegate, |
| 24 public content::NotificationObserver { | 24 public content::NotificationObserver { |
| 25 public: | 25 public: |
| 26 // Delegate class to get notifications from the dialog. | 26 // Delegate class to get notifications from the dialog. |
| 27 class Delegate { | 27 class Delegate { |
| 28 public: | 28 public: |
| 29 virtual ~Delegate() {} | |
| 30 | |
| 31 // Called when dialog has been closed. | 29 // Called when dialog has been closed. |
| 32 virtual void OnDialogClosed(); | 30 virtual void OnDialogClosed(); |
| 31 |
| 32 protected: |
| 33 virtual ~Delegate() {} |
| 33 }; | 34 }; |
| 34 | 35 |
| 35 enum Style { | 36 enum Style { |
| 36 STYLE_GENERIC, // Use generic CreateChromeWindow as a host. | 37 STYLE_GENERIC, // Use generic CreateChromeWindow as a host. |
| 37 STYLE_BUBBLE // Use chromeos::BubbleWindow as a host. | 38 STYLE_BUBBLE // Use chromeos::BubbleWindow as a host. |
| 38 }; | 39 }; |
| 39 | 40 |
| 40 LoginHtmlDialog(Delegate* delegate, | 41 LoginWebDialog(Delegate* delegate, |
| 41 gfx::NativeWindow parent_window, | 42 gfx::NativeWindow parent_window, |
| 42 const std::wstring& title, | 43 const std::wstring& title, |
| 43 const GURL& url, | 44 const GURL& url, |
| 44 Style style); | 45 Style style); |
| 45 virtual ~LoginHtmlDialog(); | 46 virtual ~LoginWebDialog(); |
| 46 | 47 |
| 47 // Shows created dialog. | |
| 48 void Show(); | 48 void Show(); |
| 49 | 49 |
| 50 // Overrides default width/height for dialog. | 50 // Overrides default width/height for dialog. |
| 51 void SetDialogSize(int width, int height); | 51 void SetDialogSize(int width, int height); |
| 52 | 52 |
| 53 // Overrides dialog title. | 53 // Overrides dialog title. |
| 54 void SetDialogTitle(const string16& title); | 54 void SetDialogTitle(const string16& title); |
| 55 | 55 |
| 56 void set_url(const GURL& url) { url_ = url; } | 56 void set_url(const GURL& url) { url_ = url; } |
| 57 | 57 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 87 GURL url_; | 87 GURL url_; |
| 88 Style style_; | 88 Style style_; |
| 89 content::NotificationRegistrar notification_registrar_; | 89 content::NotificationRegistrar notification_registrar_; |
| 90 BubbleFrameView* bubble_frame_view_; | 90 BubbleFrameView* bubble_frame_view_; |
| 91 bool is_open_; | 91 bool is_open_; |
| 92 | 92 |
| 93 // Dialog display size. | 93 // Dialog display size. |
| 94 int width_; | 94 int width_; |
| 95 int height_; | 95 int height_; |
| 96 | 96 |
| 97 DISALLOW_COPY_AND_ASSIGN(LoginHtmlDialog); | 97 DISALLOW_COPY_AND_ASSIGN(LoginWebDialog); |
| 98 }; | 98 }; |
| 99 | 99 |
| 100 } // namespace chromeos | 100 } // namespace chromeos |
| 101 | 101 |
| 102 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_HTML_DIALOG_H_ | 102 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_WEB_DIALOG_H_ |
| OLD | NEW |