| OLD | NEW |
| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 virtual void didChangeValueInTextField(HTMLFormControlElement&) {} | 306 virtual void didChangeValueInTextField(HTMLFormControlElement&) {} |
| 307 virtual void didEndEditingOnTextField(HTMLInputElement&) {} | 307 virtual void didEndEditingOnTextField(HTMLInputElement&) {} |
| 308 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, | 308 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, |
| 309 KeyboardEvent&) {} | 309 KeyboardEvent&) {} |
| 310 virtual void textFieldDataListChanged(HTMLInputElement&) {} | 310 virtual void textFieldDataListChanged(HTMLInputElement&) {} |
| 311 virtual void ajaxSucceeded(LocalFrame*) {} | 311 virtual void ajaxSucceeded(LocalFrame*) {} |
| 312 | 312 |
| 313 // Input method editor related functions. | 313 // Input method editor related functions. |
| 314 virtual void resetInputMethod() {} | 314 virtual void resetInputMethod() {} |
| 315 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {} | 315 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) {} |
| 316 virtual void showVirtualKeyboardOnElementFocus() {} | 316 virtual void showVirtualKeyboardOnElementFocus(LocalFrame&) {} |
| 317 | 317 |
| 318 virtual void registerViewportLayers() const {} | 318 virtual void registerViewportLayers() const {} |
| 319 | 319 |
| 320 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} | 320 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) {} |
| 321 | 321 |
| 322 virtual void onMouseDown(Node*) {} | 322 virtual void onMouseDown(Node*) {} |
| 323 | 323 |
| 324 virtual void didUpdateBrowserControls() const {} | 324 virtual void didUpdateBrowserControls() const {} |
| 325 | 325 |
| 326 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; | 326 virtual void registerPopupOpeningObserver(PopupOpeningObserver*) = 0; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 WeakMember<Node> m_lastMouseOverNode; | 375 WeakMember<Node> m_lastMouseOverNode; |
| 376 LayoutPoint m_lastToolTipPoint; | 376 LayoutPoint m_lastToolTipPoint; |
| 377 String m_lastToolTipText; | 377 String m_lastToolTipText; |
| 378 | 378 |
| 379 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 379 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 380 }; | 380 }; |
| 381 | 381 |
| 382 } // namespace blink | 382 } // namespace blink |
| 383 | 383 |
| 384 #endif // ChromeClient_h | 384 #endif // ChromeClient_h |
| OLD | NEW |