| 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 a497597d4ba3687d4fae3f07420ad5c2b6a2b2e8..11bc178515e432f169fe3279340e006454a6c059 100644
|
| --- a/content/browser/renderer_host/resource_request_info_impl.h
|
| +++ b/content/browser/renderer_host/resource_request_info_impl.h
|
| @@ -75,6 +75,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;
|
|
|
| @@ -106,8 +107,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; }
|
|
|