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 16 matching lines...) Expand all Loading... |
27 #include "core/loader/FrameLoader.h" | 27 #include "core/loader/FrameLoader.h" |
28 #include "core/loader/NavigationPolicy.h" | 28 #include "core/loader/NavigationPolicy.h" |
29 #include "core/frame/ConsoleTypes.h" | 29 #include "core/frame/ConsoleTypes.h" |
30 #include "core/page/FocusType.h" | 30 #include "core/page/FocusType.h" |
31 #include "core/rendering/RenderEmbeddedObject.h" | 31 #include "core/rendering/RenderEmbeddedObject.h" |
32 #include "core/rendering/style/RenderStyleConstants.h" | 32 #include "core/rendering/style/RenderStyleConstants.h" |
33 #include "platform/Cursor.h" | 33 #include "platform/Cursor.h" |
34 #include "platform/HostWindow.h" | 34 #include "platform/HostWindow.h" |
35 #include "platform/PopupMenu.h" | 35 #include "platform/PopupMenu.h" |
36 #include "platform/PopupMenuClient.h" | 36 #include "platform/PopupMenuClient.h" |
37 #include "platform/graphics/GraphicsContext.h" | |
38 #include "platform/scroll/ScrollTypes.h" | 37 #include "platform/scroll/ScrollTypes.h" |
39 #include "wtf/Forward.h" | 38 #include "wtf/Forward.h" |
40 #include "wtf/PassOwnPtr.h" | 39 #include "wtf/PassOwnPtr.h" |
41 #include "wtf/Vector.h" | 40 #include "wtf/Vector.h" |
42 | 41 |
43 | 42 |
44 #ifndef __OBJC__ | 43 #ifndef __OBJC__ |
45 class NSMenu; | 44 class NSMenu; |
46 class NSResponder; | 45 class NSResponder; |
47 #endif | 46 #endif |
48 | 47 |
49 namespace WebCore { | 48 namespace WebCore { |
50 | 49 |
51 class AXObject; | 50 class AXObject; |
52 class ColorChooser; | 51 class ColorChooser; |
53 class ColorChooserClient; | 52 class ColorChooserClient; |
54 class DateTimeChooser; | 53 class DateTimeChooser; |
55 class DateTimeChooserClient; | 54 class DateTimeChooserClient; |
56 class Element; | 55 class Element; |
57 class FileChooser; | 56 class FileChooser; |
58 class FloatRect; | 57 class FloatRect; |
59 class Frame; | 58 class Frame; |
| 59 class GraphicsContext; |
60 class GraphicsLayer; | 60 class GraphicsLayer; |
61 class GraphicsLayerFactory; | 61 class GraphicsLayerFactory; |
62 class HitTestResult; | 62 class HitTestResult; |
63 class HTMLFormControlElement; | 63 class HTMLFormControlElement; |
64 class HTMLInputElement; | 64 class HTMLInputElement; |
65 class IntRect; | 65 class IntRect; |
66 class LocalFrame; | 66 class LocalFrame; |
67 class Node; | 67 class Node; |
68 class Page; | 68 class Page; |
69 class PagePopup; | 69 class PagePopup; |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 virtual void didCancelCompositionOnSelectionChange() { } | 237 virtual void didCancelCompositionOnSelectionChange() { } |
238 virtual void willSetInputMethodState() { } | 238 virtual void willSetInputMethodState() { } |
239 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } | 239 virtual void didUpdateTextOfFocusedElementByNonUserInput() { } |
240 | 240 |
241 protected: | 241 protected: |
242 virtual ~ChromeClient() { } | 242 virtual ~ChromeClient() { } |
243 }; | 243 }; |
244 | 244 |
245 } | 245 } |
246 #endif // ChromeClient_h | 246 #endif // ChromeClient_h |
OLD | NEW |