Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: chrome/browser/browser_process_impl.h

Issue 8566028: Cleanup: Remove more forward declarations in various chrome/browser directories. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_about_handler.h ('k') | chrome/browser/browsing_data_quota_helper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // 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_
(...skipping 12 matching lines...) Expand all
23 #include "chrome/browser/prefs/pref_member.h" 23 #include "chrome/browser/prefs/pref_member.h"
24 #include "content/public/browser/notification_observer.h" 24 #include "content/public/browser/notification_observer.h"
25 #include "content/public/browser/notification_registrar.h" 25 #include "content/public/browser/notification_registrar.h"
26 #include "ipc/ipc_message.h" 26 #include "ipc/ipc_message.h"
27 27
28 class BrowserOnlineStateObserver; 28 class BrowserOnlineStateObserver;
29 class ChromeNetLog; 29 class ChromeNetLog;
30 class ChromeResourceDispatcherHostDelegate; 30 class ChromeResourceDispatcherHostDelegate;
31 class CommandLine; 31 class CommandLine;
32 class DevToolsProtocolHandler; 32 class DevToolsProtocolHandler;
33 class FilePath;
34 class PluginDataRemover;
35 class RemoteDebuggingServer; 33 class RemoteDebuggingServer;
36 class TabCloseableStateWatcher; 34 class TabCloseableStateWatcher;
37 35
38 namespace policy { 36 namespace policy {
39 class BrowserPolicyConnector; 37 class BrowserPolicyConnector;
40 }; 38 };
41 39
42 // Real implementation of BrowserProcess that creates and returns the services. 40 // Real implementation of BrowserProcess that creates and returns the services.
43 class BrowserProcessImpl : public BrowserProcess, 41 class BrowserProcessImpl : public BrowserProcess,
44 public base::NonThreadSafe, 42 public base::NonThreadSafe,
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 #if !defined(OS_CHROMEOS) 316 #if !defined(OS_CHROMEOS)
319 scoped_ptr<ComponentUpdateService> component_updater_; 317 scoped_ptr<ComponentUpdateService> component_updater_;
320 318
321 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; 319 scoped_refptr<CRLSetFetcher> crl_set_fetcher_;
322 #endif 320 #endif
323 321
324 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 322 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
325 }; 323 };
326 324
327 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 325 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_about_handler.h ('k') | chrome/browser/browsing_data_quota_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698