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

Unified Diff: content/common/resource_dispatcher.cc

Issue 9922001: Remove magic iframe load transfer support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: resync, resolve Created 8 years, 6 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
« no previous file with comments | « content/browser/renderer_host/resource_request_info_impl.h ('k') | content/common/resource_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/resource_dispatcher.cc
diff --git a/content/common/resource_dispatcher.cc b/content/common/resource_dispatcher.cc
index 0d3258f36c8798d8a4368c203ddf8088018c1e78..7a6ac06d8e0a4a8ec02c3c32f4db5cc1daa2950f 100644
--- a/content/common/resource_dispatcher.cc
+++ b/content/common/resource_dispatcher.cc
@@ -62,7 +62,6 @@ class IPCResourceLoaderBridge : public ResourceLoaderBridge {
virtual void Cancel();
virtual void SetDefersLoading(bool value);
virtual void SyncLoad(SyncLoadResponse* response);
- virtual void UpdateRoutingId(int new_routing_id);
private:
ResourceLoaderBridge::Peer* peer_;
@@ -261,18 +260,6 @@ void IPCResourceLoaderBridge::SyncLoad(SyncLoadResponse* response) {
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_request_info_impl.h ('k') | content/common/resource_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698