| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_ |
| 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_ | 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "chrome/browser/chrome_browser_main.h" | 9 #include "chrome/browser/chrome_browser_main.h" |
| 9 | 10 |
| 10 namespace breakpad { | 11 namespace breakpad { |
| 11 class CrashDumpManager; | 12 class CrashDumpManager; |
| 12 } | 13 } |
| 13 | 14 |
| 14 class ChromeBrowserMainPartsAndroid : public ChromeBrowserMainParts { | 15 class ChromeBrowserMainPartsAndroid : public ChromeBrowserMainParts { |
| 15 public: | 16 public: |
| 16 explicit ChromeBrowserMainPartsAndroid( | 17 explicit ChromeBrowserMainPartsAndroid( |
| 17 const content::MainFunctionParams& parameters); | 18 const content::MainFunctionParams& parameters); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 28 void ShowMissingLocaleMessageBox() override; | 29 void ShowMissingLocaleMessageBox() override; |
| 29 | 30 |
| 30 private: | 31 private: |
| 31 scoped_ptr<base::MessageLoop> main_message_loop_; | 32 scoped_ptr<base::MessageLoop> main_message_loop_; |
| 32 scoped_ptr<breakpad::CrashDumpManager> crash_dump_manager_; | 33 scoped_ptr<breakpad::CrashDumpManager> crash_dump_manager_; |
| 33 | 34 |
| 34 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsAndroid); | 35 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsAndroid); |
| 35 }; | 36 }; |
| 36 | 37 |
| 37 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_ | 38 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_ANDROID_H_ |
| OLD | NEW |