| 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 14 matching lines...) Expand all Loading... |
| 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 <memory> | 34 #include <memory> |
| 35 #include "core/frame/ResizeViewportAnchor.h" |
| 35 #include "core/page/ContextMenuProvider.h" | 36 #include "core/page/ContextMenuProvider.h" |
| 36 #include "core/page/EventWithHitTestResults.h" | 37 #include "core/page/EventWithHitTestResults.h" |
| 37 #include "platform/animation/CompositorAnimationTimeline.h" | 38 #include "platform/animation/CompositorAnimationTimeline.h" |
| 38 #include "platform/geometry/IntPoint.h" | 39 #include "platform/geometry/IntPoint.h" |
| 39 #include "platform/geometry/IntRect.h" | 40 #include "platform/geometry/IntRect.h" |
| 40 #include "platform/graphics/GraphicsLayer.h" | 41 #include "platform/graphics/GraphicsLayer.h" |
| 41 #include "platform/heap/Handle.h" | 42 #include "platform/heap/Handle.h" |
| 42 #include "platform/wtf/Compiler.h" | 43 #include "platform/wtf/Compiler.h" |
| 43 #include "platform/wtf/HashSet.h" | 44 #include "platform/wtf/HashSet.h" |
| 44 #include "platform/wtf/RefCounted.h" | 45 #include "platform/wtf/RefCounted.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 57 #include "public/platform/WebString.h" | 58 #include "public/platform/WebString.h" |
| 58 #include "public/platform/WebVector.h" | 59 #include "public/platform/WebVector.h" |
| 59 #include "public/web/WebNavigationPolicy.h" | 60 #include "public/web/WebNavigationPolicy.h" |
| 60 #include "public/web/WebPageImportanceSignals.h" | 61 #include "public/web/WebPageImportanceSignals.h" |
| 61 #include "public/web/WebView.h" | 62 #include "public/web/WebView.h" |
| 62 #include "web/ChromeClientImpl.h" | 63 #include "web/ChromeClientImpl.h" |
| 63 #include "web/ContextMenuClientImpl.h" | 64 #include "web/ContextMenuClientImpl.h" |
| 64 #include "web/EditorClientImpl.h" | 65 #include "web/EditorClientImpl.h" |
| 65 #include "web/MediaKeysClientImpl.h" | 66 #include "web/MediaKeysClientImpl.h" |
| 66 #include "web/PageWidgetDelegate.h" | 67 #include "web/PageWidgetDelegate.h" |
| 67 #include "web/ResizeViewportAnchor.h" | |
| 68 #include "web/SpellCheckerClientImpl.h" | 68 #include "web/SpellCheckerClientImpl.h" |
| 69 #include "web/StorageClientImpl.h" | 69 #include "web/StorageClientImpl.h" |
| 70 #include "web/WebExport.h" | 70 #include "web/WebExport.h" |
| 71 #include "web/WebPagePopupImpl.h" | 71 #include "web/WebPagePopupImpl.h" |
| 72 | 72 |
| 73 namespace blink { | 73 namespace blink { |
| 74 | 74 |
| 75 class BrowserControls; | 75 class BrowserControls; |
| 76 class CompositorAnimationHost; | 76 class CompositorAnimationHost; |
| 77 class DevToolsEmulator; | 77 class DevToolsEmulator; |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 Persistent<ResizeViewportAnchor> resize_viewport_anchor_; | 741 Persistent<ResizeViewportAnchor> resize_viewport_anchor_; |
| 742 }; | 742 }; |
| 743 | 743 |
| 744 // We have no ways to check if the specified WebView is an instance of | 744 // We have no ways to check if the specified WebView is an instance of |
| 745 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 745 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 746 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 746 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 747 | 747 |
| 748 } // namespace blink | 748 } // namespace blink |
| 749 | 749 |
| 750 #endif | 750 #endif |
| OLD | NEW |