| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 | 173 |
| 174 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons
t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE; | 174 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons
t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE; |
| 175 | 175 |
| 176 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE
RRIDE; | 176 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE
RRIDE; |
| 177 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE; | 177 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE; |
| 178 | 178 |
| 179 virtual bool requestPointerLock() OVERRIDE; | 179 virtual bool requestPointerLock() OVERRIDE; |
| 180 virtual void requestPointerUnlock() OVERRIDE; | 180 virtual void requestPointerUnlock() OVERRIDE; |
| 181 | 181 |
| 182 virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element>
>&) OVERRIDE; | 182 virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element>
>&) OVERRIDE; |
| 183 // FIXME: This function is to be removed once both chromium and blink change
s | |
| 184 // for BUG332557 are in. | |
| 185 virtual void didChangeValueInTextField(WebCore::HTMLInputElement&) OVERRIDE; | |
| 186 virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVE
RRIDE; | 183 virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVE
RRIDE; |
| 187 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE; | 184 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE; |
| 188 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC
ore::KeyboardEvent&) OVERRIDE; | 185 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC
ore::KeyboardEvent&) OVERRIDE; |
| 189 | 186 |
| 190 // FIXME: Remove this method once we have input routing in the browser | 187 // FIXME: Remove this method once we have input routing in the browser |
| 191 // process. See http://crbug.com/339659. | 188 // process. See http://crbug.com/339659. |
| 192 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) OVERRIDE
; | 189 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) OVERRIDE
; |
| 193 | 190 |
| 194 virtual void didCancelCompositionOnSelectionChange() OVERRIDE; | 191 virtual void didCancelCompositionOnSelectionChange() OVERRIDE; |
| 195 virtual void willSetInputMethodState() OVERRIDE; | 192 virtual void willSetInputMethodState() OVERRIDE; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 223 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 220 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
| 224 | 221 |
| 225 WebViewImpl* m_webView; | 222 WebViewImpl* m_webView; |
| 226 }; | 223 }; |
| 227 | 224 |
| 228 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr
omeClientImpl(), client.isChromeClientImpl()); | 225 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr
omeClientImpl(), client.isChromeClientImpl()); |
| 229 | 226 |
| 230 } // namespace blink | 227 } // namespace blink |
| 231 | 228 |
| 232 #endif | 229 #endif |
| OLD | NEW |