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

Unified Diff: content/browser/renderer_host/resource_request_info_impl.cc

Issue 10640019: Remove the HANDLED_EXTERNALLY status code. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: hack, hack, hack 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
Index: content/browser/renderer_host/resource_request_info_impl.cc
diff --git a/content/browser/renderer_host/resource_request_info_impl.cc b/content/browser/renderer_host/resource_request_info_impl.cc
index c063d1dae6b24677e1f71fdd540da3a9001eb704..d2bcd7d0ad480ec2ee1ec4253e83f50c7b5c6615 100644
--- a/content/browser/renderer_host/resource_request_info_impl.cc
+++ b/content/browser/renderer_host/resource_request_info_impl.cc
@@ -115,6 +115,7 @@ ResourceRequestInfoImpl::ResourceRequestInfoImpl(
transition_type_(transition_type),
upload_size_(upload_size),
memory_cost_(0),
+ handled_externally_(false),
referrer_policy_(referrer_policy),
context_(context) {
}
@@ -174,6 +175,10 @@ bool ResourceRequestInfoImpl::HasUserGesture() const {
return has_user_gesture_;
}
+bool ResourceRequestInfoImpl::GetHandledExternally() const {
+ return handled_externally_;
+}
+
bool ResourceRequestInfoImpl::GetAssociatedRenderView(
int* render_process_id,
int* render_view_id) const {

Powered by Google App Engine
This is Rietveld 408576698