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 WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 5 #ifndef WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
6 #define WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 6 #define WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
7 | 7 |
8 #include "net/url_request/url_request.h" | 8 #include "net/url_request/url_request.h" |
9 #include "webkit/appcache/appcache_entry.h" | 9 #include "webkit/appcache/appcache_entry.h" |
10 #include "webkit/appcache/appcache_host.h" | 10 #include "webkit/appcache/appcache_host.h" |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 // The job we use to deliver a response. | 117 // The job we use to deliver a response. |
118 scoped_refptr<AppCacheURLRequestJob> job_; | 118 scoped_refptr<AppCacheURLRequestJob> job_; |
119 | 119 |
120 friend class AppCacheRequestHandlerTest; | 120 friend class AppCacheRequestHandlerTest; |
121 DISALLOW_COPY_AND_ASSIGN(AppCacheRequestHandler); | 121 DISALLOW_COPY_AND_ASSIGN(AppCacheRequestHandler); |
122 }; | 122 }; |
123 | 123 |
124 } // namespace appcache | 124 } // namespace appcache |
125 | 125 |
126 #endif // WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ | 126 #endif // WEBKIT_APPCACHE_APPCACHE_REQUEST_HANDLER_H_ |
127 | |
OLD | NEW |