| Index: chrome/browser/autofill/risk/fingerprint.h
|
| diff --git a/chrome/browser/autofill/risk/fingerprint.h b/chrome/browser/autofill/risk/fingerprint.h
|
| index 9aae177d034a18d8cfe195040675ea52c3d872d4..6ec20eb3ee7ed146a2a5813b0683b574f14ca999 100644
|
| --- a/chrome/browser/autofill/risk/fingerprint.h
|
| +++ b/chrome/browser/autofill/risk/fingerprint.h
|
| @@ -11,6 +11,10 @@
|
|
|
| class PrefServiceBase;
|
|
|
| +namespace content {
|
| +class WebContents;
|
| +}
|
| +
|
| namespace gfx {
|
| class Rect;
|
| }
|
| @@ -28,14 +32,12 @@ class Fingerprint;
|
| // unique fingerprint for this (machine, user) pair, used for fraud prevention.
|
| // The |gaia_id| should be the user id for Google's authentication system.
|
| // The |window_bounds| should be the bounds of the containing Chrome window.
|
| -// The |content_bounds| should be the bounds of the web contents view for the
|
| -// page the user is interacting with. The |prefs| should reflect the active
|
| -// Chrome profile's user preferences.
|
| +// The |web_contents| should be host for the page the user is interacting with.
|
| +// The |prefs| should reflect the active Chrome profile's user preferences.
|
| void GetFingerprint(
|
| int64 gaia_id,
|
| const gfx::Rect& window_bounds,
|
| - const gfx::Rect& content_bounds,
|
| - const WebKit::WebScreenInfo& screen_info,
|
| + const content::WebContents& web_contents,
|
| const PrefServiceBase& prefs,
|
| const base::Callback<void(scoped_ptr<Fingerprint>)>& callback);
|
|
|
|
|