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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2370663002: Remove logic to reset input method more than needed (Closed)
Patch Set: fix test, fix IMC Created 3 years, 11 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 301
302 virtual void didAssociateFormControlsAfterLoad(LocalFrame*) {} 302 virtual void didAssociateFormControlsAfterLoad(LocalFrame*) {}
303 virtual void didChangeValueInTextField(HTMLFormControlElement&) {} 303 virtual void didChangeValueInTextField(HTMLFormControlElement&) {}
304 virtual void didEndEditingOnTextField(HTMLInputElement&) {} 304 virtual void didEndEditingOnTextField(HTMLInputElement&) {}
305 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, 305 virtual void handleKeyboardEventOnTextField(HTMLInputElement&,
306 KeyboardEvent&) {} 306 KeyboardEvent&) {}
307 virtual void textFieldDataListChanged(HTMLInputElement&) {} 307 virtual void textFieldDataListChanged(HTMLInputElement&) {}
308 virtual void ajaxSucceeded(LocalFrame*) {} 308 virtual void ajaxSucceeded(LocalFrame*) {}
309 309
310 // Input method editor related functions. 310 // Input method editor related functions.
311 virtual void didCancelCompositionOnSelectionChange() {}
312 virtual void resetInputMethod() {} 311 virtual void resetInputMethod() {}
313 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {} 312 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {}
314 virtual void showVirtualKeyboard() {} 313 virtual void showVirtualKeyboard() {}
315 314
316 virtual void registerViewportLayers() const {} 315 virtual void registerViewportLayers() const {}
317 316
318 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} 317 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {}
319 318
320 virtual void onMouseDown(Node*) {} 319 virtual void onMouseDown(Node*) {}
321 320
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 WeakMember<Node> m_lastMouseOverNode; 367 WeakMember<Node> m_lastMouseOverNode;
369 LayoutPoint m_lastToolTipPoint; 368 LayoutPoint m_lastToolTipPoint;
370 String m_lastToolTipText; 369 String m_lastToolTipText;
371 370
372 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 371 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
373 }; 372 };
374 373
375 } // namespace blink 374 } // namespace blink
376 375
377 #endif // ChromeClient_h 376 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698