| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_APP_CHROME_MAIN_DELEGATE_H_ | 5 #ifndef CHROME_APP_CHROME_MAIN_DELEGATE_H_ |
| 6 #define CHROME_APP_CHROME_MAIN_DELEGATE_H_ | 6 #define CHROME_APP_CHROME_MAIN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/metrics/stats_counters.h" | 9 #include "base/metrics/stats_counters.h" |
| 10 #include "chrome/common/chrome_content_client.h" | 10 #include "chrome/common/chrome_content_client.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 CreateContentRendererClient() OVERRIDE; | 41 CreateContentRendererClient() OVERRIDE; |
| 42 virtual content::ContentUtilityClient* CreateContentUtilityClient() OVERRIDE; | 42 virtual content::ContentUtilityClient* CreateContentUtilityClient() OVERRIDE; |
| 43 | 43 |
| 44 #if defined(OS_MACOSX) | 44 #if defined(OS_MACOSX) |
| 45 void InitMacCrashReporter(const CommandLine& command_line, | 45 void InitMacCrashReporter(const CommandLine& command_line, |
| 46 const std::string& process_type); | 46 const std::string& process_type); |
| 47 #endif // defined(OS_MACOSX) | 47 #endif // defined(OS_MACOSX) |
| 48 | 48 |
| 49 chrome::ChromeContentClient chrome_content_client_; | 49 chrome::ChromeContentClient chrome_content_client_; |
| 50 scoped_ptr<base::StatsScope<base::StatsCounterTimer> > startup_timer_; | 50 scoped_ptr<base::StatsScope<base::StatsCounterTimer> > startup_timer_; |
| 51 scoped_ptr<base::StatsCounterTimer> stats_counter_timer_; |
| 51 | 52 |
| 52 DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegate); | 53 DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegate); |
| 53 }; | 54 }; |
| 54 | 55 |
| 55 #endif // CHROME_APP_CHROME_MAIN_DELEGATE_H_ | 56 #endif // CHROME_APP_CHROME_MAIN_DELEGATE_H_ |
| OLD | NEW |