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

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

Issue 2828093003: updating Input field value by script should reset IME composition. (Closed)
Patch Set: Created 3 years, 8 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 // AutofillClient pass throughs: 197 // AutofillClient pass throughs:
198 void DidAssociateFormControlsAfterLoad(LocalFrame*) override; 198 void DidAssociateFormControlsAfterLoad(LocalFrame*) override;
199 void HandleKeyboardEventOnTextField(HTMLInputElement&, 199 void HandleKeyboardEventOnTextField(HTMLInputElement&,
200 KeyboardEvent&) override; 200 KeyboardEvent&) override;
201 void DidChangeValueInTextField(HTMLFormControlElement&) override; 201 void DidChangeValueInTextField(HTMLFormControlElement&) override;
202 void DidEndEditingOnTextField(HTMLInputElement&) override; 202 void DidEndEditingOnTextField(HTMLInputElement&) override;
203 void OpenTextDataListChooser(HTMLInputElement&) override; 203 void OpenTextDataListChooser(HTMLInputElement&) override;
204 void TextFieldDataListChanged(HTMLInputElement&) override; 204 void TextFieldDataListChanged(HTMLInputElement&) override;
205 void AjaxSucceeded(LocalFrame*) override; 205 void AjaxSucceeded(LocalFrame*) override;
206 206
207 void DidCancelCompositionOnSelectionChange() override;
207 void ShowVirtualKeyboardOnElementFocus(LocalFrame&) override; 208 void ShowVirtualKeyboardOnElementFocus(LocalFrame&) override;
208 209
209 void RegisterViewportLayers() const override; 210 void RegisterViewportLayers() const override;
210 211
211 void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; 212 void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override;
212 void OnMouseDown(Node*) override; 213 void OnMouseDown(Node*) override;
213 void DidUpdateBrowserControls() const override; 214 void DidUpdateBrowserControls() const override;
214 215
215 CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient( 216 CompositorWorkerProxyClient* CreateCompositorWorkerProxyClient(
216 LocalFrame*) override; 217 LocalFrame*) override;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 252
252 DEFINE_TYPE_CASTS(ChromeClientImpl, 253 DEFINE_TYPE_CASTS(ChromeClientImpl,
253 ChromeClient, 254 ChromeClient,
254 client, 255 client,
255 client->IsChromeClientImpl(), 256 client->IsChromeClientImpl(),
256 client.IsChromeClientImpl()); 257 client.IsChromeClientImpl());
257 258
258 } // namespace blink 259 } // namespace blink
259 260
260 #endif 261 #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