Index: content/browser/renderer_host/resource_request_info_impl.h |
diff --git a/content/browser/renderer_host/resource_request_info_impl.h b/content/browser/renderer_host/resource_request_info_impl.h |
index 3bfed353f714d11baa4c3c1223d25930943727a1..38a926dab9583eca13ccac3a222523afdcc05ca1 100644 |
--- a/content/browser/renderer_host/resource_request_info_impl.h |
+++ b/content/browser/renderer_host/resource_request_info_impl.h |
@@ -76,6 +76,7 @@ class ResourceRequestInfoImpl : public ResourceRequestInfo, |
virtual ResourceType::Type GetResourceType() const OVERRIDE; |
virtual WebKit::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; |
virtual uint64 GetUploadSize() const OVERRIDE; |
+ virtual bool HasUserGesture() const OVERRIDE; |
virtual bool GetAssociatedRenderView(int* render_process_id, |
int* render_view_id) const OVERRIDE; |
@@ -107,8 +108,6 @@ class ResourceRequestInfoImpl : public ResourceRequestInfo, |
// Downloads are allowed only as a top level request. |
bool allow_download() const { return allow_download_; } |
- bool has_user_gesture() const { return has_user_gesture_; } |
- |
// Whether this is a download. |
bool is_download() const { return is_download_; } |
void set_is_download(bool download) { is_download_ = download; } |