OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 void requestPointerUnlock(LocalFrame*) override; | 161 void requestPointerUnlock(LocalFrame*) override; |
162 | 162 |
163 // AutofillClient pass throughs: | 163 // AutofillClient pass throughs: |
164 void didAssociateFormControlsAfterLoad(LocalFrame*) override; | 164 void didAssociateFormControlsAfterLoad(LocalFrame*) override; |
165 void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent&) overr
ide; | 165 void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent&) overr
ide; |
166 void didChangeValueInTextField(HTMLFormControlElement&) override; | 166 void didChangeValueInTextField(HTMLFormControlElement&) override; |
167 void didEndEditingOnTextField(HTMLInputElement&) override; | 167 void didEndEditingOnTextField(HTMLInputElement&) override; |
168 void openTextDataListChooser(HTMLInputElement&) override; | 168 void openTextDataListChooser(HTMLInputElement&) override; |
169 void textFieldDataListChanged(HTMLInputElement&) override; | 169 void textFieldDataListChanged(HTMLInputElement&) override; |
170 void ajaxSucceeded(LocalFrame*) override; | 170 void ajaxSucceeded(LocalFrame*) override; |
| 171 void passwordFieldBecameVisible(HTMLInputElement&) override; |
171 | 172 |
172 void didCancelCompositionOnSelectionChange() override; | 173 void didCancelCompositionOnSelectionChange() override; |
173 void willSetInputMethodState() override; | 174 void willSetInputMethodState() override; |
174 void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) override; | 175 void didUpdateTextOfFocusedElementByNonUserInput(LocalFrame&) override; |
175 void showImeIfNeeded() override; | 176 void showImeIfNeeded() override; |
176 | 177 |
177 void registerViewportLayers() const override; | 178 void registerViewportLayers() const override; |
178 | 179 |
179 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; | 180 void showUnhandledTapUIIfNeeded(IntPoint, Node*, bool) override; |
180 void onMouseDown(Node*) override; | 181 void onMouseDown(Node*) override; |
(...skipping 27 matching lines...) Expand all Loading... |
208 Cursor m_lastSetMouseCursorForTesting; | 209 Cursor m_lastSetMouseCursorForTesting; |
209 bool m_cursorOverridden; | 210 bool m_cursorOverridden; |
210 bool m_didRequestNonEmptyToolTip; | 211 bool m_didRequestNonEmptyToolTip; |
211 }; | 212 }; |
212 | 213 |
213 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 214 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
214 | 215 |
215 } // namespace blink | 216 } // namespace blink |
216 | 217 |
217 #endif | 218 #endif |
OLD | NEW |