summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main_linux.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-24 01:43:26 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-24 01:43:26 +0000
commit81ce2c47705894ebdba4344f483bc4cb8f072155 (patch)
tree24be53374f8923d32f0cf025e279f39d00267d86 /chrome/browser/chrome_browser_main_linux.cc
parentf29b39837084fa85bba1bbe08984047ed93129e8 (diff)
downloadchromium_src-81ce2c47705894ebdba4344f483bc4cb8f072155.zip
chromium_src-81ce2c47705894ebdba4344f483bc4cb8f072155.tar.gz
chromium_src-81ce2c47705894ebdba4344f483bc4cb8f072155.tar.bz2
Make chrome/browser/chrome_browser_main_linux.* Linux-only.
BUG=none TEST=none Review URL: http://codereview.chromium.org/9839028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128650 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_browser_main_linux.cc')
-rw-r--r--chrome/browser/chrome_browser_main_linux.cc18
1 files changed, 1 insertions, 17 deletions
diff --git a/chrome/browser/chrome_browser_main_linux.cc b/chrome/browser/chrome_browser_main_linux.cc
index 4900de6..b27580d 100644
--- a/chrome/browser/chrome_browser_main_linux.cc
+++ b/chrome/browser/chrome_browser_main_linux.cc
@@ -1,26 +1,10 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// 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/chrome_browser_main_linux.h"
-#if defined(TOOLKIT_USES_GTK)
-#include "chrome/browser/chrome_browser_main_extra_parts_gtk.h"
-#endif
-
ChromeBrowserMainPartsLinux::ChromeBrowserMainPartsLinux(
const content::MainFunctionParams& parameters)
: ChromeBrowserMainPartsPosix(parameters) {
}
-
-void ChromeBrowserMainPartsLinux::ShowMissingLocaleMessageBox() {
-#if defined(USE_AURA)
- // This should never happen on Aura.
- NOTREACHED() << chrome_browser::kMissingLocaleDataMessage;
-#elif defined(TOOLKIT_USES_GTK)
- ChromeBrowserMainExtraPartsGtk::ShowMessageBox(
- chrome_browser::kMissingLocaleDataMessage);
-#else
-#error "Need MessageBox implementation for linux without Aura or Gtk"
-#endif
-}