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

Unified Diff: Source/web/ChromeClientImpl.h

Issue 737853002: Refactor Autofill for OOPIF, step 1: add autofillClient to WebLocalFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fn ordering Created 6 years, 1 month 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
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ChromeClientImpl.h
diff --git a/Source/web/ChromeClientImpl.h b/Source/web/ChromeClientImpl.h
index bd06ef3d90bebfe967f515fc1ac1a0f4e6a8fcae..c48f6ae377962f714ba68bfe6e4d64de281ff198 100644
--- a/Source/web/ChromeClientImpl.h
+++ b/Source/web/ChromeClientImpl.h
@@ -126,7 +126,6 @@ public:
virtual bool paintCustomOverhangArea(GraphicsContext*, const IntRect&, const IntRect&, const IntRect&) override;
virtual PassOwnPtrWillBeRawPtr<ColorChooser> createColorChooser(LocalFrame*, ColorChooserClient*, const Color&) override;
virtual PassRefPtr<DateTimeChooser> openDateTimeChooser(DateTimeChooserClient*, const DateTimeChooserParameters&) override;
- virtual void openTextDataListChooser(HTMLInputElement&) override;
virtual void runOpenPanel(LocalFrame*, PassRefPtr<FileChooser>) override;
virtual void enumerateChosenDirectory(FileChooser*) override;
virtual void setCursor(const Cursor&) override;
@@ -165,10 +164,12 @@ public:
virtual bool requestPointerLock() override;
virtual void requestPointerUnlock() override;
- virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Element> >&) override;
+ // AutofillClient pass throughs:
+ virtual void didAssociateFormControls(const WillBeHeapVector<RefPtrWillBeMember<Element> >&, LocalFrame*) override;
+ virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent&) override;
virtual void didChangeValueInTextField(HTMLFormControlElement&) override;
virtual void didEndEditingOnTextField(HTMLInputElement&) override;
- virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent&) override;
+ virtual void openTextDataListChooser(HTMLInputElement&) override;
virtual void textFieldDataListChanged(HTMLFormControlElement&) override;
virtual void didCancelCompositionOnSelectionChange() override;
« no previous file with comments | « Source/core/page/ChromeClient.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698