Chromium Code Reviews| Index: chrome/browser/ui/webui/sync_promo/sync_promo_dialog.cc |
| diff --git a/chrome/browser/ui/webui/sync_promo/sync_promo_dialog.cc b/chrome/browser/ui/webui/sync_promo/sync_promo_dialog.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e6228d606dca995c26eedbd66fec1a54cf1c323f |
| --- /dev/null |
| +++ b/chrome/browser/ui/webui/sync_promo/sync_promo_dialog.cc |
| @@ -0,0 +1,98 @@ |
| +// Copyright (c) 2012 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/ui/webui/sync_promo/sync_promo_dialog.h" |
| + |
| +#include "base/message_loop.h" |
| +#include "chrome/browser/ui/browser_dialogs.h" |
| +#include "chrome/browser/ui/webui/html_dialog_tab_contents_delegate.h" |
| +#include "chrome/browser/ui/webui/sync_promo/sync_promo_ui.h" |
| +#include "content/public/browser/page_navigator.h" |
| +#include "grit/chromium_strings.h" |
| +#include "grit/generated_resources.h" |
| +#include "ui/base/l10n/l10n_util.h" |
| +#include "ui/gfx/size.h" |
| + |
| +SyncPromoDialog::SyncPromoDialog(Profile* profile, GURL url) |
| + : profile_(profile), |
| + spawned_browser_(NULL), |
| + sync_promo_was_closed_(false), |
| + url_(url), |
| + window_(NULL) { |
| +} |
| + |
| +SyncPromoDialog::~SyncPromoDialog() { |
| +} |
| + |
| +void SyncPromoDialog::ShowDialog() { |
| + window_ = browser::ShowHtmlDialog(NULL, profile_, NULL, this, STYLE_GENERIC); |
| + |
| + // Wait for the dialog to close. |
| + MessageLoop::current()->Run(); |
| +} |
| + |
| +ui::ModalType SyncPromoDialog::GetDialogModalType() const { |
| + return ui::MODAL_TYPE_SYSTEM; |
| +} |
| + |
| +string16 SyncPromoDialog::GetDialogTitle() const { |
| + return l10n_util::GetStringFUTF16( |
| + IDS_SYNC_PROMO_TITLE, |
| + l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)); |
| +} |
| + |
| +GURL SyncPromoDialog::GetDialogContentURL() const { |
| + return url_; |
| +} |
| + |
| +void SyncPromoDialog::GetWebUIMessageHandlers( |
| + std::vector<content::WebUIMessageHandler*>* handlers) const { |
| +} |
| + |
| +void SyncPromoDialog::GetDialogSize(gfx::Size* size) const { |
|
Dan Beam
2012/01/30 18:10:05
I'm assuming this is handled somewhere, but what h
sail
2012/01/30 21:52:36
there's only one size variable, there's nothing to
|
| + *size = gfx::Size(500, 540); |
| +} |
| + |
| +std::string SyncPromoDialog::GetDialogArgs() const { |
| + return std::string(); |
| +} |
| + |
| +void SyncPromoDialog::OnDialogClosed(const std::string& json_retval) { |
| + MessageLoop::current()->Quit(); |
| +} |
| + |
| +void SyncPromoDialog::OnCloseContents(content::WebContents* source, |
| + bool* out_close_dialog) { |
| +} |
| + |
| +bool SyncPromoDialog::ShouldShowDialogTitle() const { |
| + return true; |
| +} |
| + |
| +bool SyncPromoDialog::HandleContextMenu(const ContextMenuParams& params) { |
| + return true; |
| +} |
| + |
| +bool SyncPromoDialog::HandleOpenURLFromTab( |
| + content::WebContents* source, |
| + const content::OpenURLParams& params, |
| + content::WebContents** out_new_contents) { |
| + spawned_browser_ = HtmlDialogTabContentsDelegate::StaticOpenURLFromTab( |
| + profile_, source, params, out_new_contents); |
| + sync_promo_was_closed_ = params.disposition == CURRENT_TAB; |
|
Dan Beam
2012/01/30 18:10:05
what is this doing?
sail
2012/01/30 21:52:36
if open URL request is for the current tab then th
|
| + browser::CloseHtmlDialog(window_); |
| + return true; |
| +} |
| + |
| +bool SyncPromoDialog::HandleAddNewContents( |
| + content::WebContents* source, |
| + content::WebContents* new_contents, |
| + WindowOpenDisposition disposition, |
| + const gfx::Rect& initial_pos, |
| + bool user_gesture) { |
| + spawned_browser_ = HtmlDialogTabContentsDelegate::StaticAddNewContents( |
| + profile_, source, new_contents, disposition, initial_pos, user_gesture); |
| + browser::CloseHtmlDialog(window_); |
| + return true; |
| +} |