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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 class ColorChooserClient; | 53 class ColorChooserClient; |
54 class DateTimeChooser; | 54 class DateTimeChooser; |
55 class DateTimeChooserClient; | 55 class DateTimeChooserClient; |
56 class Element; | 56 class Element; |
57 class FileChooser; | 57 class FileChooser; |
58 class FloatRect; | 58 class FloatRect; |
59 class LocalFrame; | 59 class LocalFrame; |
60 class GraphicsLayer; | 60 class GraphicsLayer; |
61 class GraphicsLayerFactory; | 61 class GraphicsLayerFactory; |
62 class HitTestResult; | 62 class HitTestResult; |
| 63 class HTMLFormControlElement; |
63 class HTMLInputElement; | 64 class HTMLInputElement; |
64 class IntRect; | 65 class IntRect; |
65 class Node; | 66 class Node; |
66 class Page; | 67 class Page; |
67 class PagePopup; | 68 class PagePopup; |
68 class PagePopupClient; | 69 class PagePopupClient; |
69 class PagePopupDriver; | 70 class PagePopupDriver; |
70 class PopupMenuClient; | 71 class PopupMenuClient; |
71 class SecurityOrigin; | 72 class SecurityOrigin; |
72 class Widget; | 73 class Widget; |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 virtual bool isSVGImageChromeClient() const { return false; } | 236 virtual bool isSVGImageChromeClient() const { return false; } |
236 | 237 |
237 virtual bool requestPointerLock() { return false; } | 238 virtual bool requestPointerLock() { return false; } |
238 virtual void requestPointerUnlock() { } | 239 virtual void requestPointerUnlock() { } |
239 | 240 |
240 virtual FloatSize minimumWindowSize() const { return FloatSize(100, 100); }; | 241 virtual FloatSize minimumWindowSize() const { return FloatSize(100, 100); }; |
241 | 242 |
242 virtual bool isChromeClientImpl() const { return false; } | 243 virtual bool isChromeClientImpl() const { return false; } |
243 | 244 |
244 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) { }; | 245 virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) { }; |
| 246 // FIXME: This function is to be removed once both chromium and blink change
s |
| 247 // for BUG332557 are in. |
245 virtual void didChangeValueInTextField(HTMLInputElement&) { } | 248 virtual void didChangeValueInTextField(HTMLInputElement&) { } |
| 249 virtual void didChangeValueInTextField(HTMLFormControlElement&) { } |
246 virtual void didEndEditingOnTextField(HTMLInputElement&) { } | 250 virtual void didEndEditingOnTextField(HTMLInputElement&) { } |
247 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent
&) { } | 251 virtual void handleKeyboardEventOnTextField(HTMLInputElement&, KeyboardEvent
&) { } |
248 | 252 |
249 // FIXME: Remove this method once we have input routing in the browser | 253 // FIXME: Remove this method once we have input routing in the browser |
250 // process. See http://crbug.com/339659. | 254 // process. See http://crbug.com/339659. |
251 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) { } | 255 virtual void forwardInputEvent(WebCore::Document*, WebCore::Event*) { } |
252 | 256 |
253 // Input mehtod editor related functions. | 257 // Input mehtod editor related functions. |
254 virtual void didCancelCompositionOnSelectionChange() { } | 258 virtual void didCancelCompositionOnSelectionChange() { } |
255 virtual void willSetInputMethodState() { } | 259 virtual void willSetInputMethodState() { } |
256 | 260 |
257 protected: | 261 protected: |
258 virtual ~ChromeClient() { } | 262 virtual ~ChromeClient() { } |
259 }; | 263 }; |
260 | 264 |
261 } | 265 } |
262 #endif // ChromeClient_h | 266 #endif // ChromeClient_h |
OLD | NEW |