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

Side by Side Diff: webkit/glue/weburlloader_impl.cc

Issue 8787003: Update these includes to use the new header locations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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
« no previous file with comments | « webkit/glue/weburlloader_impl.h ('k') | webkit/glue/weburlrequest_extradata_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // An implementation of WebURLLoader in terms of ResourceLoaderBridge. 5 // An implementation of WebURLLoader in terms of ResourceLoaderBridge.
6 6
7 #include "webkit/glue/weburlloader_impl.h" 7 #include "webkit/glue/weburlloader_impl.h"
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/message_loop.h" 12 #include "base/message_loop.h"
13 #include "base/process_util.h" 13 #include "base/process_util.h"
14 #include "base/string_util.h" 14 #include "base/string_util.h"
15 #include "base/time.h" 15 #include "base/time.h"
16 #include "net/base/data_url.h" 16 #include "net/base/data_url.h"
17 #include "net/base/load_flags.h" 17 #include "net/base/load_flags.h"
18 #include "net/base/mime_util.h" 18 #include "net/base/mime_util.h"
19 #include "net/base/net_errors.h" 19 #include "net/base/net_errors.h"
20 #include "net/base/net_util.h" 20 #include "net/base/net_util.h"
21 #include "net/http/http_response_headers.h" 21 #include "net/http/http_response_headers.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHTTPHeaderVisitor. h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebHTTPHeade rVisitor.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHTTPLoadInfo.h" 23 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebHTTPLoadI nfo.h"
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityPolicy.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLError.h" 26 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLError. h"
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoadTiming.h" 27 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoadTi ming.h"
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoaderClient.h" 28 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader Client.h"
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLRequest.h" 29 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLReques t.h"
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLResponse.h" 30 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRespon se.h"
31 #include "webkit/glue/ftp_directory_listing_response_delegate.h" 31 #include "webkit/glue/ftp_directory_listing_response_delegate.h"
32 #include "webkit/glue/multipart_response_delegate.h" 32 #include "webkit/glue/multipart_response_delegate.h"
33 #include "webkit/glue/resource_loader_bridge.h" 33 #include "webkit/glue/resource_loader_bridge.h"
34 #include "webkit/glue/webkit_glue.h" 34 #include "webkit/glue/webkit_glue.h"
35 #include "webkit/glue/webkitplatformsupport_impl.h" 35 #include "webkit/glue/webkitplatformsupport_impl.h"
36 #include "webkit/glue/weburlrequest_extradata_impl.h" 36 #include "webkit/glue/weburlrequest_extradata_impl.h"
37 37
38 using base::Time; 38 using base::Time;
39 using base::TimeDelta; 39 using base::TimeDelta;
40 using WebKit::WebData; 40 using WebKit::WebData;
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 752
753 void WebURLLoaderImpl::setDefersLoading(bool value) { 753 void WebURLLoaderImpl::setDefersLoading(bool value) {
754 context_->SetDefersLoading(value); 754 context_->SetDefersLoading(value);
755 } 755 }
756 756
757 void WebURLLoaderImpl::UpdateRoutingId(int new_routing_id) { 757 void WebURLLoaderImpl::UpdateRoutingId(int new_routing_id) {
758 context_->UpdateRoutingId(new_routing_id); 758 context_->UpdateRoutingId(new_routing_id);
759 } 759 }
760 760
761 } // namespace webkit_glue 761 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/weburlloader_impl.h ('k') | webkit/glue/weburlrequest_extradata_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698