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

Unified Diff: components/autofill/renderer/autofill_agent.h

Issue 15660018: [autofill] Add support for PSL domain matching for password autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated regexp, sanitized result, escaped form domain and added comments. Created 7 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/autofill/renderer/autofill_agent.h
diff --git a/components/autofill/renderer/autofill_agent.h b/components/autofill/renderer/autofill_agent.h
index 3303b604ece10cc5612d406e790d9ea9d923fe30..741e909dd8c1f8f91c844d7fd8985e47417a2617 100644
--- a/components/autofill/renderer/autofill_agent.h
+++ b/components/autofill/renderer/autofill_agent.h
@@ -74,9 +74,11 @@ class AutofillAgent : public content::RenderViewObserver,
virtual void FocusedNodeChanged(const WebKit::WebNode& node) OVERRIDE;
// PageClickListener:
- virtual void InputElementClicked(const WebKit::WebInputElement& element,
- bool was_focused,
- bool is_focused) OVERRIDE;
+ virtual void InputElementClicked(
+ const WebKit::WebInputElement& element,
+ bool was_focused,
+ bool is_focused,
+ InputEventSource input_event_source) OVERRIDE;
Ilya Sherman 2013/06/06 09:25:35 This change seems completely unrelated to PSL doma
nyquist 2013/06/07 22:51:10 Done. See https://codereview.chromium.org/16049009
virtual void InputElementLostFocus() OVERRIDE;
// WebKit::WebAutofillClient:

Powered by Google App Engine
This is Rietveld 408576698