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

Side by Side Diff: third_party/WebKit/Source/web/ChromeClientImpl.h

Issue 2315223003: Move didUpdateTextOfFocusedElementByNonUserInput from WebViewClient to WebWidgetClient. (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 void didAssociateFormControlsAfterLoad(LocalFrame*) override; 163 void didAssociateFormControlsAfterLoad(LocalFrame*) override;
164 void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent&) overr ide; 164 void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent&) overr ide;
165 void didChangeValueInTextField(HTMLFormControlElement&) override; 165 void didChangeValueInTextField(HTMLFormControlElement&) override;
166 void didEndEditingOnTextField(HTMLInputElement&) override; 166 void didEndEditingOnTextField(HTMLInputElement&) override;
167 void openTextDataListChooser(HTMLInputElement&) override; 167 void openTextDataListChooser(HTMLInputElement&) override;
168 void textFieldDataListChanged(HTMLInputElement&) override; 168 void textFieldDataListChanged(HTMLInputElement&) override;
169 void ajaxSucceeded(LocalFrame*) override; 169 void ajaxSucceeded(LocalFrame*) override;
170 170
171 void didCancelCompositionOnSelectionChange() override; 171 void didCancelCompositionOnSelectionChange() override;
172 void willSetInputMethodState() override; 172 void willSetInputMethodState() override;
173 void didUpdateTextOfFocusedElementByNonUserInput() override; 173 void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) override;
174 void showImeIfNeeded() override; 174 void showImeIfNeeded() override;
175 175
176 void registerViewportLayers() const override; 176 void registerViewportLayers() const override;
177 177
178 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; 178 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override;
179 void onMouseDown(Node*) override; 179 void onMouseDown(Node*) override;
180 void didUpdateTopControls() const override; 180 void didUpdateTopControls() const override;
181 181
182 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override; 182 CompositorProxyClient* createCompositorProxyClient(LocalFrame*) override;
183 FloatSize elasticOverscroll() const override; 183 FloatSize elasticOverscroll() const override;
(...skipping 23 matching lines...) Expand all
207 Cursor m_lastSetMouseCursorForTesting; 207 Cursor m_lastSetMouseCursorForTesting;
208 bool m_cursorOverridden; 208 bool m_cursorOverridden;
209 bool m_didRequestNonEmptyToolTip; 209 bool m_didRequestNonEmptyToolTip;
210 }; 210 };
211 211
212 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 212 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
213 213
214 } // namespace blink 214 } // namespace blink
215 215
216 #endif 216 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/ChromeClient.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698