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

Unified Diff: chrome/browser/chromeos/login/login_html_dialog.h

Issue 2675007: Add OOBE/login html dialog. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: merge Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/login_html_dialog.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/login_html_dialog.h
diff --git a/chrome/browser/chromeos/login/login_html_dialog.h b/chrome/browser/chromeos/login/login_html_dialog.h
new file mode 100644
index 0000000000000000000000000000000000000000..81c66289fa005caf50be9abf0f24f7e431ee9d84
--- /dev/null
+++ b/chrome/browser/chromeos/login/login_html_dialog.h
@@ -0,0 +1,62 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_HTML_DIALOG_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_HTML_DIALOG_H_
+
+#include <string>
+
+#include "chrome/browser/dom_ui/html_dialog_ui.h"
+#include "gfx/native_widget_types.h"
+#include "gfx/size.h"
+
+namespace chromeos {
+
+// Launches html dialog during OOBE/Login with specified URL and title.
+class LoginHtmlDialog : public HtmlDialogUIDelegate {
+ public:
+ // Delegate class to get notifications from the dialog.
+ class Delegate {
+ public:
+ virtual ~Delegate() {}
+
+ // Called when dialog has been closed.
+ virtual void OnDialogClosed() = 0;
+ };
+
+ LoginHtmlDialog(Delegate* delegate,
+ gfx::NativeWindow parent_window,
+ const std::wstring& title,
+ const GURL& url);
+ ~LoginHtmlDialog();
+
+ // Shows created dialog.
+ void Show();
+
+ protected:
+ // HtmlDialogUIDelegate implementation.
+ virtual bool IsDialogModal() const { return true; }
+ virtual std::wstring GetDialogTitle() const { return title_; }
+ virtual GURL GetDialogContentURL() const { return url_; }
+ virtual void GetDOMMessageHandlers(
+ std::vector<DOMMessageHandler*>* handlers) const {}
+ virtual void GetDialogSize(gfx::Size* size) const;
+ virtual std::string GetDialogArgs() const { return std::string(); }
+ virtual void OnDialogClosed(const std::string& json_retval);
+ virtual void OnCloseContents(TabContents* source, bool* out_close_dialog);
+
+ private:
+ // Notifications receiver.
+ Delegate* delegate_;
+
+ gfx::NativeWindow parent_window_;
+ std::wstring title_;
+ GURL url_;
+
+ DISALLOW_COPY_AND_ASSIGN(LoginHtmlDialog);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_HTML_DIALOG_H_
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/chromeos/login/login_html_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698