summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chrome_browser_main_posix.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-08 22:01:56 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-08 22:01:56 +0000
commite6b5bc2f9501265f507397768c19db8be4cad710 (patch)
treeb3bc7d85b5818566d5746f081445e0afbdd17ad9 /chrome/browser/chrome_browser_main_posix.h
parent00d88bf0fa159e8a68ef93d2d513de2a1c3d6c99 (diff)
downloadchromium_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.h18
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_