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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 307
308 virtual void DidAssociateFormControlsAfterLoad(LocalFrame*) {} 308 virtual void DidAssociateFormControlsAfterLoad(LocalFrame*) {}
309 virtual void DidChangeValueInTextField(HTMLFormControlElement&) {} 309 virtual void DidChangeValueInTextField(HTMLFormControlElement&) {}
310 virtual void DidEndEditingOnTextField(HTMLInputElement&) {} 310 virtual void DidEndEditingOnTextField(HTMLInputElement&) {}
311 virtual void HandleKeyboardEventOnTextField(HTMLInputElement&, 311 virtual void HandleKeyboardEventOnTextField(HTMLInputElement&,
312 KeyboardEvent&) {} 312 KeyboardEvent&) {}
313 virtual void TextFieldDataListChanged(HTMLInputElement&) {} 313 virtual void TextFieldDataListChanged(HTMLInputElement&) {}
314 virtual void AjaxSucceeded(LocalFrame*) {} 314 virtual void AjaxSucceeded(LocalFrame*) {}
315 315
316 // Input method editor related functions. 316 // Input method editor related functions.
317 virtual void DidCancelCompositionOnSelectionChange() {}
317 virtual void ResetInputMethod() {} 318 virtual void ResetInputMethod() {}
318 virtual void DidUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {} 319 virtual void DidUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {}
319 virtual void ShowVirtualKeyboardOnElementFocus(LocalFrame&) {} 320 virtual void ShowVirtualKeyboardOnElementFocus(LocalFrame&) {}
320 321
321 virtual void RegisterViewportLayers() const {} 322 virtual void RegisterViewportLayers() const {}
322 323
323 virtual void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} 324 virtual void ShowUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {}
324 325
325 virtual void OnMouseDown(Node*) {} 326 virtual void OnMouseDown(Node*) {}
326 327
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 WeakMember<Node> last_mouse_over_node_; 379 WeakMember<Node> last_mouse_over_node_;
379 LayoutPoint last_tool_tip_point_; 380 LayoutPoint last_tool_tip_point_;
380 String last_tool_tip_text_; 381 String last_tool_tip_text_;
381 382
382 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 383 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
383 }; 384 };
384 385
385 } // namespace blink 386 } // namespace blink
386 387
387 #endif // ChromeClient_h 388 #endif // ChromeClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/editing/InputMethodController.cpp ('k') | third_party/WebKit/Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698