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
diff --git a/chrome/browser/chrome_browser_main_mac.h b/chrome/browser/chrome_browser_main_mac.h
new file mode 100644
index 0000000..45e68de2
--- /dev/null
+++ b/chrome/browser/chrome_browser_main_mac.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2011 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_CHROME_BROWSER_MAIN_MAC_H_
+#define CHROME_BROWSER_CHROME_BROWSER_MAIN_MAC_H_
+#pragma once
+
+#include "chrome/browser/chrome_browser_main_posix.h"
+
+class ChromeBrowserMainPartsMac : public ChromeBrowserMainPartsPosix {
+ public:
+ explicit ChromeBrowserMainPartsMac(const MainFunctionParams& parameters);
+
+ virtual void PreEarlyInitialization() OVERRIDE;
+ virtual void PreMainMessageLoopStart() OVERRIDE;
+};
+
+#endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_MAC_H_