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/chrome_plugin_browsing_context.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/chrome_plugin_browsing_context.h')
-rw-r--r-- | chrome/browser/chrome_plugin_browsing_context.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/chrome/browser/chrome_plugin_browsing_context.h b/chrome/browser/chrome_plugin_browsing_context.h index ad44e31..71e938b 100644 --- a/chrome/browser/chrome_plugin_browsing_context.h +++ b/chrome/browser/chrome_plugin_browsing_context.h @@ -2,14 +2,14 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H__ -#define CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H__ +#ifndef CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_ +#define CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_ #include <map> #include "base/id_map.h" #include "chrome/common/chrome_plugin_api.h" -#include "chrome/common/notification_service.h" +#include "chrome/common/notification_observer.h" class URLRequestContext; @@ -55,5 +55,4 @@ class CPBrowsingContextManager : public NotificationObserver { ReverseMap reverse_map_; // map of URLRequestContext -> CPBrowsingContext }; -#endif // CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H__ - +#endif // CHROME_BROWSER_CHROME_PLUGIN_BROWSING_CONTEXT_H_ |