| OLD | NEW |
| 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 #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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 ResourceResponseInfo::~ResourceResponseInfo() { | 48 ResourceResponseInfo::~ResourceResponseInfo() { |
| 49 } | 49 } |
| 50 | 50 |
| 51 ResourceLoaderBridge::RequestInfo::RequestInfo() | 51 ResourceLoaderBridge::RequestInfo::RequestInfo() |
| 52 : load_flags(0), | 52 : load_flags(0), |
| 53 requestor_pid(0), | 53 requestor_pid(0), |
| 54 request_type(ResourceType::MAIN_FRAME), | 54 request_type(ResourceType::MAIN_FRAME), |
| 55 request_context(0), | 55 request_context(0), |
| 56 appcache_host_id(0), | 56 appcache_host_id(0), |
| 57 identifier(0), |
| 57 routing_id(0), | 58 routing_id(0), |
| 58 download_to_file(false), | 59 download_to_file(false), |
| 59 has_user_gesture(false) { | 60 has_user_gesture(false) { |
| 60 } | 61 } |
| 61 | 62 |
| 62 ResourceLoaderBridge::RequestInfo::~RequestInfo() { | 63 ResourceLoaderBridge::RequestInfo::~RequestInfo() { |
| 63 } | 64 } |
| 64 | 65 |
| 65 ResourceLoaderBridge::SyncLoadResponse::SyncLoadResponse() { | 66 ResourceLoaderBridge::SyncLoadResponse::SyncLoadResponse() { |
| 66 } | 67 } |
| 67 | 68 |
| 68 ResourceLoaderBridge::SyncLoadResponse::~SyncLoadResponse() { | 69 ResourceLoaderBridge::SyncLoadResponse::~SyncLoadResponse() { |
| 69 } | 70 } |
| 70 | 71 |
| 71 ResourceLoaderBridge::ResourceLoaderBridge() { | 72 ResourceLoaderBridge::ResourceLoaderBridge() { |
| 72 } | 73 } |
| 73 | 74 |
| 74 ResourceLoaderBridge::~ResourceLoaderBridge() { | 75 ResourceLoaderBridge::~ResourceLoaderBridge() { |
| 75 } | 76 } |
| 76 | 77 |
| 77 } // namespace webkit_glue | 78 } // namespace webkit_glue |
| OLD | NEW |