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

Unified Diff: chrome/browser/gtk/instant_confirm_dialog_gtk.cc

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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/gtk/instant_confirm_dialog_gtk.h ('k') | chrome/browser/gtk/js_modal_dialog_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/instant_confirm_dialog_gtk.cc
===================================================================
--- chrome/browser/gtk/instant_confirm_dialog_gtk.cc (revision 71352)
+++ chrome/browser/gtk/instant_confirm_dialog_gtk.cc (working copy)
@@ -1,77 +0,0 @@
-// 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/gtk/instant_confirm_dialog_gtk.h"
-
-#include <gtk/gtk.h>
-
-#include "app/l10n_util.h"
-#include "chrome/browser/gtk/gtk_chrome_link_button.h"
-#include "chrome/browser/gtk/gtk_util.h"
-#include "chrome/browser/instant/instant_confirm_dialog.h"
-#include "chrome/browser/instant/instant_controller.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/ui/options/show_options_url.h"
-#include "googleurl/src/gurl.h"
-#include "grit/chromium_strings.h"
-#include "grit/generated_resources.h"
-
-namespace browser {
-
-void ShowInstantConfirmDialog(GtkWindow* parent, Profile* profile) {
- new InstantConfirmDialogGtk(parent, profile);
-}
-
-} // namespace browser
-
-InstantConfirmDialogGtk::InstantConfirmDialogGtk(
- GtkWindow* parent, Profile* profile) : profile_(profile) {
- dialog_ = gtk_dialog_new_with_buttons(
- l10n_util::GetStringUTF8(IDS_INSTANT_OPT_IN_TITLE).c_str(),
- parent,
- static_cast<GtkDialogFlags>(GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR),
- GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
- GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
- NULL);
- g_signal_connect(dialog_, "response",
- G_CALLBACK(OnDialogResponseThunk), this);
-
- GtkBox* vbox = GTK_BOX(GTK_DIALOG(dialog_)->vbox);
- gtk_box_set_spacing(vbox, gtk_util::kControlSpacing);
-
- GtkWidget* label = gtk_label_new(
- l10n_util::GetStringUTF8(IDS_INSTANT_OPT_IN_MESSAGE).c_str());
- gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
- gtk_box_pack_start(vbox, label, FALSE, FALSE, 0);
-
- GtkWidget* link_button = gtk_chrome_link_button_new(
- l10n_util::GetStringUTF8(IDS_OPTIONS_LEARN_MORE_LABEL).c_str());
- g_signal_connect(link_button, "clicked",
- G_CALLBACK(OnLinkButtonClickedThunk), this);
-
- GtkWidget* action_area = GTK_DIALOG(dialog_)->action_area;
- gtk_container_add(GTK_CONTAINER(action_area), link_button);
- gtk_button_box_set_child_secondary(GTK_BUTTON_BOX(action_area),
- link_button,
- TRUE);
-
- gtk_dialog_set_default_response(GTK_DIALOG(dialog_), GTK_RESPONSE_ACCEPT);
- gtk_widget_show_all(dialog_);
-}
-
-InstantConfirmDialogGtk::~InstantConfirmDialogGtk() {
- gtk_widget_destroy(dialog_);
-}
-
-void InstantConfirmDialogGtk::OnDialogResponse(GtkWidget* dialog,
- int response) {
- if (response == GTK_RESPONSE_ACCEPT)
- InstantController::Enable(profile_);
-
- delete this;
-}
-
-void InstantConfirmDialogGtk::OnLinkButtonClicked(GtkWidget* button) {
- browser::ShowOptionsURL(profile_, browser::InstantLearnMoreURL());
-}
« no previous file with comments | « chrome/browser/gtk/instant_confirm_dialog_gtk.h ('k') | chrome/browser/gtk/js_modal_dialog_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698