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

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

Issue 12321055: Revert 183382 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1418/src/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « webkit/glue/resource_loader_bridge.h ('k') | webkit/glue/weburlloader_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) 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 #include "webkit/glue/resource_loader_bridge.h" 5 #include "webkit/glue/resource_loader_bridge.h"
6 6
7 #include "webkit/appcache/appcache_interfaces.h" 7 #include "webkit/appcache/appcache_interfaces.h"
8 #include "net/http/http_response_headers.h" 8 #include "net/http/http_response_headers.h"
9 9
10 namespace webkit_glue { 10 namespace webkit_glue {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 was_fetched_via_proxy(false) { 44 was_fetched_via_proxy(false) {
45 } 45 }
46 46
47 ResourceResponseInfo::~ResourceResponseInfo() {} 47 ResourceResponseInfo::~ResourceResponseInfo() {}
48 48
49 ResourceLoaderBridge::RequestInfo::RequestInfo() 49 ResourceLoaderBridge::RequestInfo::RequestInfo()
50 : referrer_policy(WebKit::WebReferrerPolicyDefault), 50 : referrer_policy(WebKit::WebReferrerPolicyDefault),
51 load_flags(0), 51 load_flags(0),
52 requestor_pid(0), 52 requestor_pid(0),
53 request_type(ResourceType::MAIN_FRAME), 53 request_type(ResourceType::MAIN_FRAME),
54 priority(net::LOW), 54 priority(WebKit::WebURLRequest::PriorityUnresolved),
55 request_context(0), 55 request_context(0),
56 appcache_host_id(0), 56 appcache_host_id(0),
57 routing_id(0), 57 routing_id(0),
58 download_to_file(false), 58 download_to_file(false),
59 has_user_gesture(false), 59 has_user_gesture(false),
60 extra_data(NULL) { 60 extra_data(NULL) {
61 } 61 }
62 62
63 ResourceLoaderBridge::RequestInfo::~RequestInfo() {} 63 ResourceLoaderBridge::RequestInfo::~RequestInfo() {}
64 64
65 ResourceLoaderBridge::SyncLoadResponse::SyncLoadResponse() {} 65 ResourceLoaderBridge::SyncLoadResponse::SyncLoadResponse() {}
66 66
67 ResourceLoaderBridge::SyncLoadResponse::~SyncLoadResponse() {} 67 ResourceLoaderBridge::SyncLoadResponse::~SyncLoadResponse() {}
68 68
69 ResourceLoaderBridge::ResourceLoaderBridge() {} 69 ResourceLoaderBridge::ResourceLoaderBridge() {}
70 70
71 ResourceLoaderBridge::~ResourceLoaderBridge() {} 71 ResourceLoaderBridge::~ResourceLoaderBridge() {}
72 72
73 } // namespace webkit_glue 73 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/resource_loader_bridge.h ('k') | webkit/glue/weburlloader_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698