| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_COMMON_APPCACHE_CHROME_APPCACHE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_APPCACHE_CHROME_APPCACHE_SERVICE_H_ |
| 6 #define CHROME_COMMON_APPCACHE_CHROME_APPCACHE_SERVICE_H_ | 6 #define CHROME_BROWSER_APPCACHE_CHROME_APPCACHE_SERVICE_H_ |
| 7 | 7 |
| 8 #include "base/ref_counted.h" | 8 #include "base/ref_counted.h" |
| 9 #include "chrome/browser/host_content_settings_map.h" | 9 #include "chrome/browser/host_content_settings_map.h" |
| 10 #include "chrome/common/notification_registrar.h" | 10 #include "chrome/common/notification_registrar.h" |
| 11 #include "webkit/appcache/appcache_policy.h" | 11 #include "webkit/appcache/appcache_policy.h" |
| 12 #include "webkit/appcache/appcache_service.h" | 12 #include "webkit/appcache/appcache_service.h" |
| 13 | 13 |
| 14 class ChromeURLRequestContext; | 14 class ChromeURLRequestContext; |
| 15 class FilePath; | 15 class FilePath; |
| 16 | 16 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 44 | 44 |
| 45 // NotificationObserver override | 45 // NotificationObserver override |
| 46 virtual void Observe(NotificationType type, | 46 virtual void Observe(NotificationType type, |
| 47 const NotificationSource& source, | 47 const NotificationSource& source, |
| 48 const NotificationDetails& details); | 48 const NotificationDetails& details); |
| 49 | 49 |
| 50 scoped_refptr<HostContentSettingsMap> host_contents_settings_map_; | 50 scoped_refptr<HostContentSettingsMap> host_contents_settings_map_; |
| 51 NotificationRegistrar registrar_; | 51 NotificationRegistrar registrar_; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_COMMON_APPCACHE_CHROME_APPCACHE_SERVICE_H_ | 54 #endif // CHROME_BROWSER_APPCACHE_CHROME_APPCACHE_SERVICE_H_ |
| OLD | NEW |