| 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebViewImpl_h | 31 #ifndef WebViewImpl_h |
| 32 #define WebViewImpl_h | 32 #define WebViewImpl_h |
| 33 | 33 |
| 34 #include "core/html/ime/InputMethodContext.h" | 34 #include "sky/engine/core/html/ime/InputMethodContext.h" |
| 35 #include "platform/geometry/IntPoint.h" | 35 #include "sky/engine/platform/geometry/IntPoint.h" |
| 36 #include "platform/geometry/IntRect.h" | 36 #include "sky/engine/platform/geometry/IntRect.h" |
| 37 #include "platform/graphics/GraphicsLayer.h" | 37 #include "sky/engine/platform/graphics/GraphicsLayer.h" |
| 38 #include "public/platform/WebGestureCurveTarget.h" | 38 #include "sky/engine/public/platform/WebGestureCurveTarget.h" |
| 39 #include "public/platform/WebLayer.h" | 39 #include "sky/engine/public/platform/WebLayer.h" |
| 40 #include "public/platform/WebPoint.h" | 40 #include "sky/engine/public/platform/WebPoint.h" |
| 41 #include "public/platform/WebRect.h" | 41 #include "sky/engine/public/platform/WebRect.h" |
| 42 #include "public/platform/WebSize.h" | 42 #include "sky/engine/public/platform/WebSize.h" |
| 43 #include "public/platform/WebString.h" | 43 #include "sky/engine/public/platform/WebString.h" |
| 44 #include "public/web/WebInputEvent.h" | 44 #include "sky/engine/public/web/WebInputEvent.h" |
| 45 #include "public/web/WebNavigationPolicy.h" | 45 #include "sky/engine/public/web/WebNavigationPolicy.h" |
| 46 #include "public/web/WebView.h" | 46 #include "sky/engine/public/web/WebView.h" |
| 47 #include "web/ChromeClientImpl.h" | 47 #include "sky/engine/web/ChromeClientImpl.h" |
| 48 #include "web/EditorClientImpl.h" | 48 #include "sky/engine/web/EditorClientImpl.h" |
| 49 #include "web/PageWidgetDelegate.h" | 49 #include "sky/engine/web/PageWidgetDelegate.h" |
| 50 #include "web/SpellCheckerClientImpl.h" | 50 #include "sky/engine/web/SpellCheckerClientImpl.h" |
| 51 #include "wtf/OwnPtr.h" | 51 #include "sky/engine/wtf/OwnPtr.h" |
| 52 #include "wtf/RefCounted.h" | 52 #include "sky/engine/wtf/RefCounted.h" |
| 53 #include "wtf/Vector.h" | 53 #include "sky/engine/wtf/Vector.h" |
| 54 | 54 |
| 55 namespace blink { | 55 namespace blink { |
| 56 | 56 |
| 57 class Frame; | 57 class Frame; |
| 58 class LinkHighlight; | 58 class LinkHighlight; |
| 59 class RenderLayerCompositor; | 59 class RenderLayerCompositor; |
| 60 class UserGestureToken; | 60 class UserGestureToken; |
| 61 class WebActiveGestureAnimation; | 61 class WebActiveGestureAnimation; |
| 62 class WebLocalFrameImpl; | 62 class WebLocalFrameImpl; |
| 63 class WebImage; | 63 class WebImage; |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 bool m_userGestureObserved; | 450 bool m_userGestureObserved; |
| 451 }; | 451 }; |
| 452 | 452 |
| 453 // We have no ways to check if the specified WebView is an instance of | 453 // We have no ways to check if the specified WebView is an instance of |
| 454 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 454 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 455 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 455 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 456 | 456 |
| 457 } // namespace blink | 457 } // namespace blink |
| 458 | 458 |
| 459 #endif | 459 #endif |
| OLD | NEW |