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

Unified Diff: chrome/browser/gtk/process_singleton_dialog.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/process_singleton_dialog.h ('k') | chrome/browser/gtk/reload_button_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/process_singleton_dialog.cc
===================================================================
--- chrome/browser/gtk/process_singleton_dialog.cc (revision 71352)
+++ chrome/browser/gtk/process_singleton_dialog.cc (working copy)
@@ -1,42 +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/process_singleton_dialog.h"
-
-#include "app/l10n_util.h"
-#include "base/message_loop.h"
-#include "chrome/browser/gtk/gtk_util.h"
-#include "grit/chromium_strings.h"
-
-// static
-void ProcessSingletonDialog::ShowAndRun(const std::string& message) {
- ProcessSingletonDialog dialog(message);
-}
-
-ProcessSingletonDialog::ProcessSingletonDialog(const std::string& message) {
- dialog_ = gtk_message_dialog_new(
- NULL,
- static_cast<GtkDialogFlags>(0),
- GTK_MESSAGE_ERROR,
- GTK_BUTTONS_NONE,
- "%s",
- message.c_str());
- gtk_util::ApplyMessageDialogQuirks(dialog_);
- gtk_window_set_title(GTK_WINDOW(dialog_),
- l10n_util::GetStringUTF8(IDS_PRODUCT_NAME).c_str());
- gtk_dialog_add_button(GTK_DIALOG(dialog_), GTK_STOCK_QUIT,
- GTK_RESPONSE_REJECT);
-
- g_signal_connect(dialog_, "response", G_CALLBACK(OnResponse), this);
-
- gtk_widget_show_all(dialog_);
- MessageLoop::current()->Run();
-}
-
-// static
-void ProcessSingletonDialog::OnResponse(GtkWidget* widget, int response,
- ProcessSingletonDialog* dialog) {
- gtk_widget_destroy(dialog->dialog_);
- MessageLoop::current()->Quit();
-}
« no previous file with comments | « chrome/browser/gtk/process_singleton_dialog.h ('k') | chrome/browser/gtk/reload_button_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698