OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "core/page/ContextMenuProvider.h" | 34 #include "core/page/ContextMenuProvider.h" |
35 #include "core/page/EventWithHitTestResults.h" | 35 #include "core/page/EventWithHitTestResults.h" |
36 #include "platform/animation/CompositorAnimationTimeline.h" | 36 #include "platform/animation/CompositorAnimationTimeline.h" |
37 #include "platform/geometry/IntPoint.h" | 37 #include "platform/geometry/IntPoint.h" |
38 #include "platform/geometry/IntRect.h" | 38 #include "platform/geometry/IntRect.h" |
39 #include "platform/graphics/GraphicsLayer.h" | 39 #include "platform/graphics/GraphicsLayer.h" |
40 #include "platform/heap/Handle.h" | 40 #include "platform/heap/Handle.h" |
41 #include "public/platform/WebDisplayMode.h" | 41 #include "public/platform/WebDisplayMode.h" |
42 #include "public/platform/WebFloatSize.h" | 42 #include "public/platform/WebFloatSize.h" |
43 #include "public/platform/WebGestureCurveTarget.h" | 43 #include "public/platform/WebGestureCurveTarget.h" |
| 44 #include "public/platform/WebGestureEvent.h" |
| 45 #include "public/platform/WebInputEvent.h" |
44 #include "public/platform/WebInputEventResult.h" | 46 #include "public/platform/WebInputEventResult.h" |
45 #include "public/platform/WebLayer.h" | 47 #include "public/platform/WebLayer.h" |
46 #include "public/platform/WebPoint.h" | 48 #include "public/platform/WebPoint.h" |
47 #include "public/platform/WebRect.h" | 49 #include "public/platform/WebRect.h" |
48 #include "public/platform/WebScheduler.h" | 50 #include "public/platform/WebScheduler.h" |
49 #include "public/platform/WebSize.h" | 51 #include "public/platform/WebSize.h" |
50 #include "public/platform/WebString.h" | 52 #include "public/platform/WebString.h" |
51 #include "public/platform/WebVector.h" | 53 #include "public/platform/WebVector.h" |
52 #include "public/web/WebInputEvent.h" | |
53 #include "public/web/WebNavigationPolicy.h" | 54 #include "public/web/WebNavigationPolicy.h" |
54 #include "public/web/WebPageImportanceSignals.h" | 55 #include "public/web/WebPageImportanceSignals.h" |
55 #include "public/web/WebView.h" | 56 #include "public/web/WebView.h" |
56 #include "web/ChromeClientImpl.h" | 57 #include "web/ChromeClientImpl.h" |
57 #include "web/ContextMenuClientImpl.h" | 58 #include "web/ContextMenuClientImpl.h" |
58 #include "web/EditorClientImpl.h" | 59 #include "web/EditorClientImpl.h" |
59 #include "web/MediaKeysClientImpl.h" | 60 #include "web/MediaKeysClientImpl.h" |
60 #include "web/PageWidgetDelegate.h" | 61 #include "web/PageWidgetDelegate.h" |
61 #include "web/ResizeViewportAnchor.h" | 62 #include "web/ResizeViewportAnchor.h" |
62 #include "web/SpellCheckerClientImpl.h" | 63 #include "web/SpellCheckerClientImpl.h" |
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; | 745 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; |
745 }; | 746 }; |
746 | 747 |
747 // We have no ways to check if the specified WebView is an instance of | 748 // We have no ways to check if the specified WebView is an instance of |
748 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 749 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
749 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 750 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
750 | 751 |
751 } // namespace blink | 752 } // namespace blink |
752 | 753 |
753 #endif | 754 #endif |
OLD | NEW |