Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: webkit/browser/appcache/appcache_response.h

Issue 18191004: webkit: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync+rebase Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « webkit/browser/appcache/appcache_interceptor.h ('k') | webkit/browser/appcache/appcache_update_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698