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

Unified Diff: chrome/browser/browser_main_posix.h

Issue 2931007: BrowserMain() refactoring, part 2. (Closed)
Patch Set: Updated per brettw and merged ToT. Created 10 years, 5 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
« no previous file with comments | « chrome/browser/browser_main_mac.mm ('k') | chrome/browser/browser_main_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_main_posix.h
diff --git a/chrome/browser/browser_main_posix.h b/chrome/browser/browser_main_posix.h
new file mode 100644
index 0000000000000000000000000000000000000000..bd247e954c521a74444f6381294980aebebedb0d
--- /dev/null
+++ b/chrome/browser/browser_main_posix.h
@@ -0,0 +1,20 @@
+// 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_MAIN_POSIX_H_
+#define CHROME_BROWSER_BROWSER_MAIN_POSIX_H_
+
+#include "chrome/browser/browser_main.h"
+
+class BrowserMainPartsPosix : public BrowserMainParts {
+ public:
+ explicit BrowserMainPartsPosix(const MainFunctionParams& parameters)
+ : BrowserMainParts(parameters) {}
+
+ protected:
+ virtual void PreEarlyInitialization();
+ virtual void PostMainMessageLoopStart();
+};
+
+#endif // CHROME_BROWSER_BROWSER_MAIN_POSIX_H_
« no previous file with comments | « chrome/browser/browser_main_mac.mm ('k') | chrome/browser/browser_main_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698