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

Unified Diff: chrome/browser/ui/gtk/chrome_browser_main_extra_parts_gtk.cc

Issue 231733005: Delete the GTK+ port of Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remerge to ToT Created 6 years, 8 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
Index: chrome/browser/ui/gtk/chrome_browser_main_extra_parts_gtk.cc
diff --git a/chrome/browser/ui/gtk/chrome_browser_main_extra_parts_gtk.cc b/chrome/browser/ui/gtk/chrome_browser_main_extra_parts_gtk.cc
deleted file mode 100644
index a6f5d493c0a770a7528c09ec1d784a77e49ac19c..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/gtk/chrome_browser_main_extra_parts_gtk.cc
+++ /dev/null
@@ -1,80 +0,0 @@
-// 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/gtk/chrome_browser_main_extra_parts_gtk.h"
-
-#include <gtk/gtk.h>
-
-#include "base/command_line.h"
-#include "chrome/browser/chrome_browser_main.h"
-#include "chrome/common/chrome_switches.h"
-#include "grit/chromium_strings.h"
-#include "grit/generated_resources.h"
-#include "ui/base/l10n/l10n_util.h"
-#include "ui/base/resource/resource_bundle.h"
-#include "ui/gfx/gtk_util.h"
-
-ChromeBrowserMainExtraPartsGtk::ChromeBrowserMainExtraPartsGtk() {
-}
-
-void ChromeBrowserMainExtraPartsGtk::PreEarlyInitialization() {
- DetectRunningAsRoot();
-}
-
-
-void ChromeBrowserMainExtraPartsGtk::DetectRunningAsRoot() {
- if (geteuid() == 0) {
- const CommandLine& command_line = *CommandLine::ForCurrentProcess();
- if (command_line.HasSwitch(switches::kUserDataDir))
- return;
-
- gfx::GtkInitFromCommandLine(command_line);
-
- // Get just enough of our resource machinery up so we can extract the
- // locale appropriate string. Note that the GTK implementation ignores the
- // passed in parameter and checks the LANG environment variables instead.
- ResourceBundle::InitSharedInstanceWithLocale(std::string(), NULL);
-
- std::string message = l10n_util::GetStringFUTF8(
- IDS_REFUSE_TO_RUN_AS_ROOT,
- l10n_util::GetStringUTF16(IDS_PRODUCT_NAME));
- GtkWidget* dialog = gtk_message_dialog_new(
- NULL,
- static_cast<GtkDialogFlags>(0),
- GTK_MESSAGE_ERROR,
- GTK_BUTTONS_CLOSE,
- "%s",
- message.c_str());
-
- LOG(ERROR) << "Startup refusing to run as root.";
- message = l10n_util::GetStringFUTF8(
- IDS_REFUSE_TO_RUN_AS_ROOT_2,
- l10n_util::GetStringUTF16(IDS_PRODUCT_NAME));
- gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
- "%s",
- message.c_str());
-
- message = l10n_util::GetStringUTF8(IDS_PRODUCT_NAME);
- gtk_window_set_title(GTK_WINDOW(dialog), message.c_str());
-
- gtk_dialog_run(GTK_DIALOG(dialog));
- gtk_widget_destroy(dialog);
- exit(EXIT_FAILURE);
- }
-}
-
-// static
-void ChromeBrowserMainExtraPartsGtk::ShowMessageBox(const char* message) {
- GtkWidget* dialog = gtk_message_dialog_new(
- NULL,
- static_cast<GtkDialogFlags>(0),
- GTK_MESSAGE_ERROR,
- GTK_BUTTONS_CLOSE,
- "%s",
- message);
-
- gtk_window_set_title(GTK_WINDOW(dialog), message);
- gtk_dialog_run(GTK_DIALOG(dialog));
- gtk_widget_destroy(dialog);
-}

Powered by Google App Engine
This is Rietveld 408576698