| OLD | NEW |
| 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 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/supports_user_data.h" | 9 #include "base/supports_user_data.h" |
| 10 #include "content/browser/appcache/appcache_entry.h" | 10 #include "content/browser/appcache/appcache_entry.h" |
| 11 #include "content/browser/appcache/appcache_host.h" | 11 #include "content/browser/appcache/appcache_host.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "webkit/common/resource_type.h" | 13 #include "content/public/common/resource_type.h" |
| 14 | 14 |
| 15 namespace net { | 15 namespace net { |
| 16 class NetworkDelegate; | 16 class NetworkDelegate; |
| 17 class URLRequest; | 17 class URLRequest; |
| 18 class URLRequestJob; | 18 class URLRequestJob; |
| 19 } // namespace net | 19 } // namespace net |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class AppCacheRequestHandlerTest; | 22 class AppCacheRequestHandlerTest; |
| 23 class AppCacheURLRequestJob; | 23 class AppCacheURLRequestJob; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 // from the old processes structures over to the new structures. | 139 // from the old processes structures over to the new structures. |
| 140 scoped_ptr<AppCacheHost> host_for_cross_site_transfer_; | 140 scoped_ptr<AppCacheHost> host_for_cross_site_transfer_; |
| 141 | 141 |
| 142 friend class content::AppCacheRequestHandlerTest; | 142 friend class content::AppCacheRequestHandlerTest; |
| 143 DISALLOW_COPY_AND_ASSIGN(AppCacheRequestHandler); | 143 DISALLOW_COPY_AND_ASSIGN(AppCacheRequestHandler); |
| 144 }; | 144 }; |
| 145 | 145 |
| 146 } // namespace content | 146 } // namespace content |
| 147 | 147 |
| 148 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 148 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
| OLD | NEW |