diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-01 18:16:56 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-01 18:16:56 +0000 |
commit | bfd04a62ce610d7bb61dbb78811dccbed23589b7 (patch) | |
tree | 70bb228c0f00ba1c12c584efd569daccf96b4026 /chrome/browser/browser_process.h | |
parent | a814d863440f0a154a7299f2d8b440f405c7700e (diff) | |
download | chromium_src-bfd04a62ce610d7bb61dbb78811dccbed23589b7.zip chromium_src-bfd04a62ce610d7bb61dbb78811dccbed23589b7.tar.gz chromium_src-bfd04a62ce610d7bb61dbb78811dccbed23589b7.tar.bz2 |
Remove most header file dependencies on the notification type list. It is
really painful to add more types, since lots of headers include the
notification service to derive from the notification observer. This splits that
out, so much less of the project should end up including notification_types.h
---Paths modified but not in any changelist:
Review URL: http://codereview.chromium.org/19744
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index 22b13d3..7343737 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -7,8 +7,8 @@ // will return NULL if the service is not available, so callers must check for // this condition. -#ifndef CHROME_BROWSER_BROWSER_PROCESS_H__ -#define CHROME_BROWSER_BROWSER_PROCESS_H__ +#ifndef CHROME_BROWSER_BROWSER_PROCESS_H_ +#define CHROME_BROWSER_BROWSER_PROCESS_H_ #include <string> #include <vector> @@ -25,7 +25,6 @@ class DownloadRequestManager; class GoogleURLTracker; class IconManager; class MetricsService; -class NotificationService; class PrefService; class ProfileManager; class DebuggerWrapper; @@ -142,10 +141,9 @@ class BrowserProcess { // User-data-dir based profiles. std::vector<std::wstring> user_data_dir_profiles_; - DISALLOW_EVIL_CONSTRUCTORS(BrowserProcess); + DISALLOW_COPY_AND_ASSIGN(BrowserProcess); }; extern BrowserProcess* g_browser_process; -#endif // CHROME_BROWSER_BROWSER_PROCESS_H__ - +#endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |