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

Side by Side Diff: third_party/WebKit/public/web/WebAutofillClient.h

Issue 2664603002: Remove replaceComposition() calls in finishComposingText. (Closed)
Patch Set: Rebase Created 3 years, 10 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebViewTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 virtual void textFieldDidChange(const WebFormControlElement&) {} 44 virtual void textFieldDidChange(const WebFormControlElement&) {}
45 virtual void textFieldDidReceiveKeyDown(const WebInputElement&, 45 virtual void textFieldDidReceiveKeyDown(const WebInputElement&,
46 const WebKeyboardEvent&) {} 46 const WebKeyboardEvent&) {}
47 // This is called when a datalist indicator is clicked. 47 // This is called when a datalist indicator is clicked.
48 virtual void openTextDataListChooser(const WebInputElement&) {} 48 virtual void openTextDataListChooser(const WebInputElement&) {}
49 // This is called when the datalist for an input has changed. 49 // This is called when the datalist for an input has changed.
50 virtual void dataListOptionsChanged(const WebInputElement&) {} 50 virtual void dataListOptionsChanged(const WebInputElement&) {}
51 // Called the first time the user interacts with the page after a load. 51 // Called the first time the user interacts with the page after a load.
52 virtual void firstUserGestureObserved() {} 52 virtual void firstUserGestureObserved() {}
53 53
54 // Informs the client whether or not any subsequent text changes should be
55 // ignored.
56 virtual void setIgnoreTextChanges(bool ignore) {}
57
58 virtual void didAssociateFormControlsDynamically() {} 54 virtual void didAssociateFormControlsDynamically() {}
59 virtual void ajaxSucceeded() {} 55 virtual void ajaxSucceeded() {}
60 56
61 protected: 57 protected:
62 virtual ~WebAutofillClient() {} 58 virtual ~WebAutofillClient() {}
63 }; 59 };
64 60
65 } // namespace blink 61 } // namespace blink
66 62
67 #endif 63 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebViewTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698