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 // When each service is created, we set a flag indicating this. At this point, | 5 // When each service is created, we set a flag indicating this. At this point, |
6 // the service initialization could fail or succeed. This allows us to remember | 6 // the service initialization could fail or succeed. This allows us to remember |
7 // if we tried to create a service, and not try creating it over and over if | 7 // if we tried to create a service, and not try creating it over and over if |
8 // the creation failed. | 8 // the creation failed. |
9 | 9 |
10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
11 #define CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 11 #define CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
12 | 12 |
13 #include <string> | 13 #include <string> |
14 | 14 |
15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
16 #include "base/debug/stack_trace.h" | 16 #include "base/debug/stack_trace.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
18 #include "base/memory/scoped_ptr.h" | 18 #include "base/memory/scoped_ptr.h" |
| 19 #include "base/prefs/public/pref_change_registrar.h" |
19 #include "base/threading/non_thread_safe.h" | 20 #include "base/threading/non_thread_safe.h" |
20 #include "base/timer.h" | 21 #include "base/timer.h" |
21 #include "chrome/browser/api/prefs/pref_change_registrar.h" | |
22 #include "chrome/browser/api/prefs/pref_member.h" | 22 #include "chrome/browser/api/prefs/pref_member.h" |
23 #include "chrome/browser/browser_process.h" | 23 #include "chrome/browser/browser_process.h" |
24 #include "content/public/browser/notification_observer.h" | 24 #include "content/public/browser/notification_observer.h" |
25 | 25 |
26 class ChromeNetLog; | 26 class ChromeNetLog; |
27 class ChromeResourceDispatcherHostDelegate; | 27 class ChromeResourceDispatcherHostDelegate; |
28 class CommandLine; | 28 class CommandLine; |
29 class RemoteDebuggingServer; | 29 class RemoteDebuggingServer; |
30 | 30 |
31 #if defined(ENABLE_PLUGIN_INSTALLATION) | 31 #if defined(ENABLE_PLUGIN_INSTALLATION) |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 scoped_refptr<PluginsResourceService> plugins_resource_service_; | 264 scoped_refptr<PluginsResourceService> plugins_resource_service_; |
265 #endif | 265 #endif |
266 // TODO(eroman): Remove this when done debugging 113031. This tracks | 266 // TODO(eroman): Remove this when done debugging 113031. This tracks |
267 // the callstack which released the final module reference count. | 267 // the callstack which released the final module reference count. |
268 base::debug::StackTrace release_last_reference_callstack_; | 268 base::debug::StackTrace release_last_reference_callstack_; |
269 | 269 |
270 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 270 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
271 }; | 271 }; |
272 | 272 |
273 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 273 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |