diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 22:01:56 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-08 22:01:56 +0000 |
commit | e6b5bc2f9501265f507397768c19db8be4cad710 (patch) | |
tree | b3bc7d85b5818566d5746f081445e0afbdd17ad9 /chrome/browser/chrome_browser_main_posix.h | |
parent | 00d88bf0fa159e8a68ef93d2d513de2a1c3d6c99 (diff) | |
download | chromium_src-e6b5bc2f9501265f507397768c19db8be4cad710.zip chromium_src-e6b5bc2f9501265f507397768c19db8be4cad710.tar.gz chromium_src-e6b5bc2f9501265f507397768c19db8be4cad710.tar.bz2 |
Rename the Chrome BrowserMainParts implementations to all start with Chrome. The classes already got renamed once BrowserMainParts moved to content. This just renames the file names.
BUG=90445
Review URL: http://codereview.chromium.org/7841049
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100269 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 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/browser/chrome_browser_main_posix.h b/chrome/browser/chrome_browser_main_posix.h new file mode 100644 index 0000000..79a6566 --- /dev/null +++ b/chrome/browser/chrome_browser_main_posix.h @@ -0,0 +1,18 @@ +// Copyright (c) 2010 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_ + +#include "chrome/browser/chrome_browser_main.h" + +class ChromeBrowserMainPartsPosix : public ChromeBrowserMainParts { + public: + explicit ChromeBrowserMainPartsPosix(const MainFunctionParams& parameters); + + virtual void PreEarlyInitialization() OVERRIDE; + virtual void PostMainMessageLoopStart() OVERRIDE; +}; + +#endif // CHROME_BROWSER_BROWSER_CHROME_MAIN_POSIX_H_ |