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

Unified Diff: components/safe_browsing/password_protection/password_protection_request.h

Issue 2911293003: Reland: Cache protected password entry and password on focus ping separately. (Closed)
Patch Set: Fix Crashes by Using GetDictionaryWithoutPathExpansion Created 3 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: components/safe_browsing/password_protection/password_protection_request.h
diff --git a/components/safe_browsing/password_protection/password_protection_request.h b/components/safe_browsing/password_protection/password_protection_request.h
index 721739b277ec9f29bfed6528591466b0edc95035..756a65d0db0155e2f1226194658fd6aaecc60da8 100644
--- a/components/safe_browsing/password_protection/password_protection_request.h
+++ b/components/safe_browsing/password_protection/password_protection_request.h
@@ -74,8 +74,8 @@ class PasswordProtectionRequest : public base::RefCountedThreadSafe<
content::WebContents* web_contents() const { return web_contents_; }
- LoginReputationClientRequest::TriggerType request_type() const {
- return request_type_;
+ LoginReputationClientRequest::TriggerType trigger_type() const {
+ return trigger_type_;
}
private:
@@ -129,7 +129,7 @@ class PasswordProtectionRequest : public base::RefCountedThreadSafe<
const std::string saved_domain_;
// If this request is for unfamiliar login page or for a password reuse event.
- const LoginReputationClientRequest::TriggerType request_type_;
+ const LoginReputationClientRequest::TriggerType trigger_type_;
// If there is a password field on the page.
const bool password_field_exists_;

Powered by Google App Engine
This is Rietveld 408576698