Index: content/browser/loader/resource_dispatcher_host_impl.h |
diff --git a/content/browser/loader/resource_dispatcher_host_impl.h b/content/browser/loader/resource_dispatcher_host_impl.h |
index 269af9215f943228470130f189116c1b93a1381d..88eacb27c86b5024763c27469b132a354c15c463 100644 |
--- a/content/browser/loader/resource_dispatcher_host_impl.h |
+++ b/content/browser/loader/resource_dispatcher_host_impl.h |
@@ -240,9 +240,17 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl |
// Called by NavigationRequest to start a navigation request in the node |
clamy
2014/08/21 11:48:52
nit: could you add a //PlzNavigate line before tha
carlosk
2014/08/21 16:28:04
Done.
|
// identified by |frame_node_id|. |
- void NavigationRequest(const NavigationRequestInfo& info, |
- scoped_refptr<ResourceRequestBody> request_body, |
- int64 frame_node_id); |
+ void StartNavigationRequest(const NavigationRequestInfo& info, |
+ scoped_refptr<ResourceRequestBody> request_body, |
+ int64 navigation_request_id, |
+ int64 frame_node_id); |
+ |
+ // PlzNavigate |
+ // Called by NavigationRequest to cancel a navigation request with the |
+ // provided |navigation_request_id| from the node identified by |
+ // |frame_node_id|. |
+ void CancelNavigationRequest(int64 navigation_request_id, |
+ int64 frame_node_id); |
private: |
friend class ResourceDispatcherHostTest; |