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

Unified Diff: chrome/browser/gtk/import_lock_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/import_lock_dialog_gtk.h ('k') | chrome/browser/gtk/import_progress_dialog_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/import_lock_dialog_gtk.cc
===================================================================
--- chrome/browser/gtk/import_lock_dialog_gtk.cc (revision 71352)
+++ chrome/browser/gtk/import_lock_dialog_gtk.cc (working copy)
@@ -1,60 +0,0 @@
-// Copyright (c) 2009 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/import_lock_dialog_gtk.h"
-
-#include "app/l10n_util.h"
-#include "base/message_loop.h"
-#include "chrome/browser/gtk/gtk_util.h"
-#include "chrome/browser/importer/importer.h"
-#include "grit/chromium_strings.h"
-#include "grit/generated_resources.h"
-
-// static
-void ImportLockDialogGtk::Show(GtkWindow* parent, ImporterHost* importer_host) {
- new ImportLockDialogGtk(parent, importer_host);
-}
-
-ImportLockDialogGtk::ImportLockDialogGtk(GtkWindow* parent,
- ImporterHost* importer_host) : importer_host_(importer_host) {
- // Build the dialog.
- dialog_ = gtk_dialog_new_with_buttons(
- l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_TITLE).c_str(),
- parent,
- (GtkDialogFlags) (GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR),
- NULL);
-
- gtk_util::AddButtonToDialog(dialog_,
- l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_CANCEL).c_str(),
- GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT);
- gtk_util::AddButtonToDialog(dialog_,
- l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_OK).c_str(),
- GTK_STOCK_OK, GTK_RESPONSE_ACCEPT);
-
- GtkWidget* content_area = GTK_DIALOG(dialog_)->vbox;
- gtk_box_set_spacing(GTK_BOX(content_area), gtk_util::kContentAreaSpacing);
- GtkWidget* label = gtk_label_new(
- l10n_util::GetStringUTF8(IDS_IMPORTER_LOCK_TEXT).c_str());
- gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
- gtk_box_pack_start(GTK_BOX(content_area), label, FALSE, FALSE, 0);
-
- g_signal_connect(dialog_, "response",
- G_CALLBACK(OnDialogResponseThunk), this);
- gtk_window_set_resizable(GTK_WINDOW(dialog_), FALSE);
- gtk_widget_show_all(dialog_);
-}
-
-ImportLockDialogGtk::~ImportLockDialogGtk() {}
-
-void ImportLockDialogGtk::OnDialogResponse(GtkWidget* widget, int response) {
- if (response == GTK_RESPONSE_ACCEPT) {
- MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod(
- importer_host_.get(), &ImporterHost::OnLockViewEnd, true));
- } else {
- MessageLoop::current()->PostTask(FROM_HERE, NewRunnableMethod(
- importer_host_.get(), &ImporterHost::OnLockViewEnd, false));
- }
- gtk_widget_destroy(dialog_);
- delete this;
-}
« no previous file with comments | « chrome/browser/gtk/import_lock_dialog_gtk.h ('k') | chrome/browser/gtk/import_progress_dialog_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698