| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include <memory> | 34 #include <memory> |
| 35 #include "core/exported/WebViewBase.h" | 35 #include "core/exported/WebViewBase.h" |
| 36 #include "core/frame/ResizeViewportAnchor.h" | 36 #include "core/frame/ResizeViewportAnchor.h" |
| 37 #include "core/page/ContextMenuProvider.h" | 37 #include "core/page/ContextMenuProvider.h" |
| 38 #include "core/page/EventWithHitTestResults.h" | 38 #include "core/page/EventWithHitTestResults.h" |
| 39 #include "platform/animation/CompositorAnimationTimeline.h" | 39 #include "platform/animation/CompositorAnimationTimeline.h" |
| 40 #include "platform/geometry/IntPoint.h" | 40 #include "platform/geometry/IntPoint.h" |
| 41 #include "platform/geometry/IntRect.h" | 41 #include "platform/geometry/IntRect.h" |
| 42 #include "platform/graphics/GraphicsLayer.h" | 42 #include "platform/graphics/GraphicsLayer.h" |
| 43 #include "platform/graphics/TouchAction.h" |
| 43 #include "platform/heap/Handle.h" | 44 #include "platform/heap/Handle.h" |
| 44 #include "platform/scheduler/child/web_scheduler.h" | 45 #include "platform/scheduler/child/web_scheduler.h" |
| 45 #include "platform/wtf/Compiler.h" | 46 #include "platform/wtf/Compiler.h" |
| 46 #include "platform/wtf/HashSet.h" | 47 #include "platform/wtf/HashSet.h" |
| 47 #include "platform/wtf/Vector.h" | 48 #include "platform/wtf/Vector.h" |
| 48 #include "public/platform/WebDisplayMode.h" | 49 #include "public/platform/WebDisplayMode.h" |
| 49 #include "public/platform/WebFloatSize.h" | 50 #include "public/platform/WebFloatSize.h" |
| 50 #include "public/platform/WebGestureCurveTarget.h" | 51 #include "public/platform/WebGestureCurveTarget.h" |
| 51 #include "public/platform/WebGestureEvent.h" | 52 #include "public/platform/WebGestureEvent.h" |
| 52 #include "public/platform/WebInputEvent.h" | 53 #include "public/platform/WebInputEvent.h" |
| (...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 Persistent<ResizeViewportAnchor> resize_viewport_anchor_; | 747 Persistent<ResizeViewportAnchor> resize_viewport_anchor_; |
| 747 }; | 748 }; |
| 748 | 749 |
| 749 // We have no ways to check if the specified WebView is an instance of | 750 // We have no ways to check if the specified WebView is an instance of |
| 750 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 751 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 751 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 752 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 752 | 753 |
| 753 } // namespace blink | 754 } // namespace blink |
| 754 | 755 |
| 755 #endif | 756 #endif |
| OLD | NEW |