| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_APPCACHE_APPCACHE_RESPONSE_H_ | 5 #ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_RESPONSE_H_ |
| 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_RESPONSE_H_ | 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_RESPONSE_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "googleurl/src/gurl.h" | |
| 13 #include "net/base/completion_callback.h" | 12 #include "net/base/completion_callback.h" |
| 14 #include "net/http/http_response_info.h" | 13 #include "net/http/http_response_info.h" |
| 14 #include "url/gurl.h" |
| 15 #include "webkit/browser/webkit_storage_browser_export.h" | 15 #include "webkit/browser/webkit_storage_browser_export.h" |
| 16 #include "webkit/common/appcache/appcache_interfaces.h" | 16 #include "webkit/common/appcache/appcache_interfaces.h" |
| 17 | 17 |
| 18 namespace net { | 18 namespace net { |
| 19 class IOBuffer; | 19 class IOBuffer; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace appcache { | 22 namespace appcache { |
| 23 | 23 |
| 24 class AppCacheService; | 24 class AppCacheService; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 int write_position_; | 252 int write_position_; |
| 253 int write_amount_; | 253 int write_amount_; |
| 254 CreationPhase creation_phase_; | 254 CreationPhase creation_phase_; |
| 255 net::CompletionCallback create_callback_; | 255 net::CompletionCallback create_callback_; |
| 256 base::WeakPtrFactory<AppCacheResponseWriter> weak_factory_; | 256 base::WeakPtrFactory<AppCacheResponseWriter> weak_factory_; |
| 257 }; | 257 }; |
| 258 | 258 |
| 259 } // namespace appcache | 259 } // namespace appcache |
| 260 | 260 |
| 261 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_RESPONSE_H_ | 261 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_RESPONSE_H_ |
| OLD | NEW |