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

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

Issue 2596193002: Clean up names and remove unnecessary parameter (Closed)
Patch Set: change show_ime to show_virtual_keyboard in the renderer 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 virtual void didEndEditingOnTextField(HTMLInputElement&) {} 300 virtual void didEndEditingOnTextField(HTMLInputElement&) {}
301 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, 301 virtual void handleKeyboardEventOnTextField(HTMLInputElement&,
302 KeyboardEvent&) {} 302 KeyboardEvent&) {}
303 virtual void textFieldDataListChanged(HTMLInputElement&) {} 303 virtual void textFieldDataListChanged(HTMLInputElement&) {}
304 virtual void ajaxSucceeded(LocalFrame*) {} 304 virtual void ajaxSucceeded(LocalFrame*) {}
305 305
306 // Input method editor related functions. 306 // Input method editor related functions.
307 virtual void didCancelCompositionOnSelectionChange() {} 307 virtual void didCancelCompositionOnSelectionChange() {}
308 virtual void resetInputMethod() {} 308 virtual void resetInputMethod() {}
309 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {} 309 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {}
310 virtual void showImeIfNeeded() {} 310 virtual void showVirtualKeyboard() {}
311 311
312 virtual void registerViewportLayers() const {} 312 virtual void registerViewportLayers() const {}
313 313
314 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} 314 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {}
315 315
316 virtual void onMouseDown(Node*) {} 316 virtual void onMouseDown(Node*) {}
317 317
318 virtual void didUpdateBrowserControls() const {} 318 virtual void didUpdateBrowserControls() const {}
319 319
320 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; 320 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 361
362 LayoutPoint m_lastToolTipPoint; 362 LayoutPoint m_lastToolTipPoint;
363 String m_lastToolTipText; 363 String m_lastToolTipText;
364 364
365 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 365 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
366 }; 366 };
367 367
368 } // namespace blink 368 } // namespace blink
369 369
370 #endif // ChromeClient_h 370 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698