diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-24 01:43:26 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-24 01:43:26 +0000 |
commit | 81ce2c47705894ebdba4344f483bc4cb8f072155 (patch) | |
tree | 24be53374f8923d32f0cf025e279f39d00267d86 /chrome/browser/chrome_browser_main_posix.h | |
parent | f29b39837084fa85bba1bbe08984047ed93129e8 (diff) | |
download | chromium_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_posix.h')
-rw-r--r-- | chrome/browser/chrome_browser_main_posix.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/chrome/browser/chrome_browser_main_posix.h b/chrome/browser/chrome_browser_main_posix.h index 6188de7..e8cab81 100644 --- a/chrome/browser/chrome_browser_main_posix.h +++ b/chrome/browser/chrome_browser_main_posix.h @@ -1,9 +1,9 @@ -// Copyright (c) 2010 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. -#ifndef CHROME_BROWSER_BROWSER_CHROME_MAIN_POSIX_H_ -#define CHROME_BROWSER_BROWSER_CHROME_MAIN_POSIX_H_ +#ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_POSIX_H_ +#define CHROME_BROWSER_CHROME_BROWSER_MAIN_POSIX_H_ #include "chrome/browser/chrome_browser_main.h" @@ -12,8 +12,15 @@ class ChromeBrowserMainPartsPosix : public ChromeBrowserMainParts { explicit ChromeBrowserMainPartsPosix( const content::MainFunctionParams& parameters); + // content::BrowserMainParts overrides. virtual void PreEarlyInitialization() OVERRIDE; virtual void PostMainMessageLoopStart() OVERRIDE; + + // ChromeBrowserMainParts overrides. + virtual void ShowMissingLocaleMessageBox() OVERRIDE; + + private: + DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsPosix); }; -#endif // CHROME_BROWSER_BROWSER_CHROME_MAIN_POSIX_H_ +#endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_POSIX_H_ |