Index: webkit/glue/weburlloader_impl.cc |
=================================================================== |
--- webkit/glue/weburlloader_impl.cc (revision 97070) |
+++ webkit/glue/weburlloader_impl.cc (working copy) |
@@ -263,7 +263,6 @@ |
void Start( |
const WebURLRequest& request, |
ResourceLoaderBridge::SyncLoadResponse* sync_load_response); |
- void UpdateRoutingId(int new_routing_id); |
// ResourceLoaderBridge::Peer methods: |
virtual void OnUploadProgress(uint64 position, uint64 size); |
@@ -325,11 +324,6 @@ |
bridge_->SetDefersLoading(value); |
} |
-void WebURLLoaderImpl::Context::UpdateRoutingId(int new_routing_id) { |
- if (bridge_.get()) |
- bridge_->UpdateRoutingId(new_routing_id); |
-} |
- |
void WebURLLoaderImpl::Context::Start( |
const WebURLRequest& request, |
ResourceLoaderBridge::SyncLoadResponse* sync_load_response) { |
@@ -735,8 +729,4 @@ |
context_->SetDefersLoading(value); |
} |
-void WebURLLoaderImpl::UpdateRoutingId(int new_routing_id) { |
- context_->UpdateRoutingId(new_routing_id); |
-} |
- |
} // namespace webkit_glue |