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 30 matching lines...) Expand all Loading... |
41 #include "wtf/PassOwnPtr.h" | 41 #include "wtf/PassOwnPtr.h" |
42 | 42 |
43 namespace WebCore { | 43 namespace WebCore { |
44 class AXObject; | 44 class AXObject; |
45 class ColorChooser; | 45 class ColorChooser; |
46 class ColorChooserClient; | 46 class ColorChooserClient; |
47 class Element; | 47 class Element; |
48 class Event; | 48 class Event; |
49 class FileChooser; | 49 class FileChooser; |
50 class GraphicsLayerFactory; | 50 class GraphicsLayerFactory; |
| 51 class HTMLFormControlElement; |
51 class HTMLInputElement; | 52 class HTMLInputElement; |
52 class KeyboardEvent; | 53 class KeyboardEvent; |
53 class PopupContainer; | 54 class PopupContainer; |
54 class PopupMenuClient; | 55 class PopupMenuClient; |
55 class RenderBox; | 56 class RenderBox; |
56 class SecurityOrigin; | 57 class SecurityOrigin; |
57 class DateTimeChooser; | 58 class DateTimeChooser; |
58 class DateTimeChooserClient; | 59 class DateTimeChooserClient; |
59 struct WindowFeatures; | 60 struct WindowFeatures; |
60 } | 61 } |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 | 177 |
177 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons
t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE; | 178 virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, cons
t String& dialogMessage, WebCore::Document::PageDismissalType) const OVERRIDE; |
178 | 179 |
179 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE
RRIDE; | 180 virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVE
RRIDE; |
180 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE; | 181 virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE; |
181 | 182 |
182 virtual bool requestPointerLock() OVERRIDE; | 183 virtual bool requestPointerLock() OVERRIDE; |
183 virtual void requestPointerUnlock() OVERRIDE; | 184 virtual void requestPointerUnlock() OVERRIDE; |
184 | 185 |
185 virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element>
>&) OVERRIDE; | 186 virtual void didAssociateFormControls(const Vector<RefPtr<WebCore::Element>
>&) OVERRIDE; |
186 virtual void didChangeValueInTextField(WebCore::HTMLInputElement&) OVERRIDE; | 187 virtual void didChangeValueInTextField(WebCore::HTMLFormControlElement&) OVE
RRIDE; |
187 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE; | 188 virtual void didEndEditingOnTextField(WebCore::HTMLInputElement&) OVERRIDE; |
188 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC
ore::KeyboardEvent&) OVERRIDE; | 189 virtual void handleKeyboardEventOnTextField(WebCore::HTMLInputElement&, WebC
ore::KeyboardEvent&) OVERRIDE; |
189 | 190 |
190 // FIXME: Remove this method once we have input routing in the browser | 191 // FIXME: Remove this method once we have input routing in the browser |
191 // process. See http://crbug.com/339659. | 192 // process. See http://crbug.com/339659. |
192 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) OVERRIDE
; | 193 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) OVERRIDE
; |
193 | 194 |
194 virtual void didCancelCompositionOnSelectionChange() OVERRIDE; | 195 virtual void didCancelCompositionOnSelectionChange() OVERRIDE; |
195 virtual void willSetInputMethodState() OVERRIDE; | 196 virtual void willSetInputMethodState() OVERRIDE; |
196 | 197 |
(...skipping 27 matching lines...) Expand all Loading... |
224 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); | 225 explicit NavigatorContentUtilsClientImpl(WebViewImpl*); |
225 | 226 |
226 WebViewImpl* m_webView; | 227 WebViewImpl* m_webView; |
227 }; | 228 }; |
228 | 229 |
229 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr
omeClientImpl(), client.isChromeClientImpl()); | 230 DEFINE_TYPE_CASTS(ChromeClientImpl, WebCore::ChromeClient, client, client->isChr
omeClientImpl(), client.isChromeClientImpl()); |
230 | 231 |
231 } // namespace blink | 232 } // namespace blink |
232 | 233 |
233 #endif | 234 #endif |
OLD | NEW |