1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_
6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_
8 #include "chrome/browser/chrome_browser_main.h"
10 class CrashDumpManager
;
12 class ChromeBrowserMainPartsAndroid
: public ChromeBrowserMainParts
{
14 explicit ChromeBrowserMainPartsAndroid(
15 const content::MainFunctionParams
& parameters
);
16 virtual ~ChromeBrowserMainPartsAndroid();
18 // content::BrowserMainParts overrides.
19 virtual void PreProfileInit() OVERRIDE
;
20 virtual void PreEarlyInitialization() OVERRIDE
;
21 virtual int PreCreateThreads() OVERRIDE
;
23 // ChromeBrowserMainParts overrides.
24 virtual void ShowMissingLocaleMessageBox() OVERRIDE
;
27 scoped_ptr
<base::MessageLoop
> main_message_loop_
;
28 scoped_ptr
<CrashDumpManager
> crash_dump_manager_
;
30 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsAndroid
);
33 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_