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

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

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/browser/chromeos/login/login_html_dialog.h ('k') | chrome/browser/chromeos/login/new_user_view.h » ('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.cc
diff --git a/chrome/browser/chromeos/login/login_html_dialog.cc b/chrome/browser/chromeos/login/login_html_dialog.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a895626a401f015438d6fd4306c3b5e293f3d8df
--- /dev/null
+++ b/chrome/browser/chromeos/login/login_html_dialog.cc
@@ -0,0 +1,63 @@
+// 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.
+
+#include "chrome/browser/chromeos/login/login_html_dialog.h"
+
+#include "chrome/browser/profile_manager.h"
+#include "chrome/browser/views/browser_dialogs.h"
+#include "gfx/native_widget_types.h"
+#include "gfx/size.h"
+#include "views/window/window.h"
+
+namespace chromeos {
+
+namespace {
+
+const int kDefaultWidth = 800;
+const int kDefaultHeight = 600;
+
+} // namespace
+
+///////////////////////////////////////////////////////////////////////////////
+// LoginHtmlDialog, public:
+
+LoginHtmlDialog::LoginHtmlDialog(Delegate* delegate,
+ gfx::NativeWindow parent_window,
+ const std::wstring& title,
+ const GURL& url)
+ : delegate_(delegate),
+ parent_window_(parent_window),
+ title_(title),
+ url_(url) {
+}
+
+LoginHtmlDialog::~LoginHtmlDialog() {
+ delegate_ = NULL;
+}
+
+void LoginHtmlDialog::Show() {
+ browser::ShowHtmlDialogView(parent_window_,
+ ProfileManager::GetDefaultProfile(),
+ this);
+}
+
+///////////////////////////////////////////////////////////////////////////////
+// LoginHtmlDialog, protected:
+
+void LoginHtmlDialog::OnDialogClosed(const std::string& json_retval) {
+ if (delegate_)
+ delegate_->OnDialogClosed();
+}
+
+void LoginHtmlDialog::OnCloseContents(TabContents* source,
+ bool* out_close_dialog) {
+ if (out_close_dialog)
+ *out_close_dialog = true;
+}
+
+void LoginHtmlDialog::GetDialogSize(gfx::Size* size) const {
+ size->SetSize(kDefaultWidth, kDefaultHeight);
+}
+
+} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/login/login_html_dialog.h ('k') | chrome/browser/chromeos/login/new_user_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698