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

Unified Diff: content/common/resource_dispatcher.cc

Issue 7627003: Revert 97048 - Trying to see if this is related with a (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: content/common/resource_dispatcher.cc
===================================================================
--- content/common/resource_dispatcher.cc (revision 97070)
+++ content/common/resource_dispatcher.cc (working copy)
@@ -53,7 +53,6 @@
virtual void Cancel();
virtual void SetDefersLoading(bool value);
virtual void SyncLoad(SyncLoadResponse* response);
- virtual void UpdateRoutingId(int new_routing_id);
private:
ResourceLoaderBridge::Peer* peer_;
@@ -225,18 +224,6 @@
response->download_file_path = result.download_file_path;
}
-void IPCResourceLoaderBridge::UpdateRoutingId(int new_routing_id) {
- if (request_id_ < 0) {
- NOTREACHED() << "Trying to update an unstarted request";
- return;
- }
-
- routing_id_ = new_routing_id;
- dispatcher_->message_sender()->Send(
- new ResourceHostMsg_TransferRequestToNewPage(new_routing_id,
- request_id_));
-}
-
} // namespace webkit_glue
// ResourceDispatcher ---------------------------------------------------------
« no previous file with comments | « content/browser/renderer_host/resource_dispatcher_host_request_info.h ('k') | content/common/resource_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698