| 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_H_ | 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ |
| 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ | 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/metrics/field_trial.h" | 10 #include "base/metrics/field_trial.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 class StartupTimeBomb; | 28 class StartupTimeBomb; |
| 29 class ShutdownWatcherHelper; | 29 class ShutdownWatcherHelper; |
| 30 class ThreeDAPIObserver; | 30 class ThreeDAPIObserver; |
| 31 | 31 |
| 32 namespace chrome_browser { | 32 namespace chrome_browser { |
| 33 // For use by ShowMissingLocaleMessageBox. | 33 // For use by ShowMissingLocaleMessageBox. |
| 34 #if defined(OS_WIN) | 34 #if defined(OS_WIN) |
| 35 extern const char kMissingLocaleDataTitle[]; | 35 extern const char kMissingLocaleDataTitle[]; |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 #if defined(OS_WIN) || defined(TOOLKIT_GTK) | 38 #if defined(OS_WIN) |
| 39 extern const char kMissingLocaleDataMessage[]; | 39 extern const char kMissingLocaleDataMessage[]; |
| 40 #endif | 40 #endif |
| 41 } | 41 } |
| 42 | 42 |
| 43 namespace chrome_browser_metrics { | 43 namespace chrome_browser_metrics { |
| 44 class TrackingSynchronizer; | 44 class TrackingSynchronizer; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace performance_monitor { | 47 namespace performance_monitor { |
| 48 class StartupTimer; | 48 class StartupTimer; |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 bool restart_last_session_; | 190 bool restart_last_session_; |
| 191 | 191 |
| 192 // Tests can set this to true to disable restricting cookie access in the | 192 // Tests can set this to true to disable restricting cookie access in the |
| 193 // network stack, as this can only be done once. | 193 // network stack, as this can only be done once. |
| 194 static bool disable_enforcing_cookie_policies_for_tests_; | 194 static bool disable_enforcing_cookie_policies_for_tests_; |
| 195 | 195 |
| 196 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainParts); | 196 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainParts); |
| 197 }; | 197 }; |
| 198 | 198 |
| 199 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ | 199 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ |
| OLD | NEW |