| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, 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 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 | 253 |
| 254 virtual bool isChromeClientImpl() const { return false; } | 254 virtual bool isChromeClientImpl() const { return false; } |
| 255 | 255 |
| 256 virtual void didAssociateFormControlsAfterLoad(LocalFrame*) { } | 256 virtual void didAssociateFormControlsAfterLoad(LocalFrame*) { } |
| 257 virtual void didChangeValueInTextField(HTMLFormControlElement&) { } | 257 virtual void didChangeValueInTextField(HTMLFormControlElement&) { } |
| 258 virtual void didEndEditingOnTextField(HTMLInputElement&) { } | 258 virtual void didEndEditingOnTextField(HTMLInputElement&) { } |
| 259 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent
&) { } | 259 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent
&) { } |
| 260 virtual void textFieldDataListChanged(HTMLInputElement&) { } | 260 virtual void textFieldDataListChanged(HTMLInputElement&) { } |
| 261 virtual void ajaxSucceeded(LocalFrame*) { } | 261 virtual void ajaxSucceeded(LocalFrame*) { } |
| 262 | 262 |
| 263 virtual void passwordFieldBecameVisible(HTMLInputElement&) {} |
| 264 |
| 263 // Input method editor related functions. | 265 // Input method editor related functions. |
| 264 virtual void didCancelCompositionOnSelectionChange() { } | 266 virtual void didCancelCompositionOnSelectionChange() { } |
| 265 virtual void willSetInputMethodState() { } | 267 virtual void willSetInputMethodState() { } |
| 266 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) { } | 268 virtual void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) { } |
| 267 virtual void showImeIfNeeded() { } | 269 virtual void showImeIfNeeded() { } |
| 268 | 270 |
| 269 virtual void registerViewportLayers() const { } | 271 virtual void registerViewportLayers() const { } |
| 270 | 272 |
| 271 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) { } | 273 virtual void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) { } |
| 272 | 274 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 312 |
| 311 LayoutPoint m_lastToolTipPoint; | 313 LayoutPoint m_lastToolTipPoint; |
| 312 String m_lastToolTipText; | 314 String m_lastToolTipText; |
| 313 | 315 |
| 314 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); | 316 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); |
| 315 }; | 317 }; |
| 316 | 318 |
| 317 } // namespace blink | 319 } // namespace blink |
| 318 | 320 |
| 319 #endif // ChromeClient_h | 321 #endif // ChromeClient_h |
| OLD | NEW |