Chromium Code Reviews

Unified Diff: chrome/browser/history/download_create_info.cc

Issue 5603008: Modify the "dangerous download" algorithm as follows. Original patch by Pier... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/browser/history/download_create_info.h ('k') | chrome/browser/history/history_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/download_create_info.cc
===================================================================
--- chrome/browser/history/download_create_info.cc (revision 68377)
+++ chrome/browser/history/download_create_info.cc (working copy)
@@ -15,7 +15,8 @@
int64 received_bytes,
int64 total_bytes,
int32 state,
- int32 download_id)
+ int32 download_id,
+ bool has_user_gesture)
: path(path),
url(url),
path_uniquifier(0),
@@ -24,6 +25,7 @@
total_bytes(total_bytes),
state(state),
download_id(download_id),
+ has_user_gesture(has_user_gesture),
child_id(-1),
render_view_id(-1),
request_id(-1),
@@ -39,6 +41,7 @@
total_bytes(0),
state(-1),
download_id(-1),
+ has_user_gesture(has_user_gesture),
child_id(-1),
render_view_id(-1),
request_id(-1),
« no previous file with comments | « chrome/browser/history/download_create_info.h ('k') | chrome/browser/history/history_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine