| 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 29 matching lines...) Expand all Loading... |
| 40 #include "NotificationPresenterImpl.h" | 40 #include "NotificationPresenterImpl.h" |
| 41 #include "PageOverlayList.h" | 41 #include "PageOverlayList.h" |
| 42 #include "PageWidgetDelegate.h" | 42 #include "PageWidgetDelegate.h" |
| 43 #include "UserMediaClientImpl.h" | 43 #include "UserMediaClientImpl.h" |
| 44 #include "WebInputEvent.h" | 44 #include "WebInputEvent.h" |
| 45 #include "WebNavigationPolicy.h" | 45 #include "WebNavigationPolicy.h" |
| 46 #include "WebView.h" | 46 #include "WebView.h" |
| 47 #include "core/page/PagePopupDriver.h" | 47 #include "core/page/PagePopupDriver.h" |
| 48 #include "core/page/PageScaleConstraintsSet.h" | 48 #include "core/page/PageScaleConstraintsSet.h" |
| 49 #include "core/platform/Timer.h" | 49 #include "core/platform/Timer.h" |
| 50 #include "core/platform/graphics/FloatSize.h" | |
| 51 #include "core/platform/graphics/GraphicsContext3D.h" | 50 #include "core/platform/graphics/GraphicsContext3D.h" |
| 52 #include "core/platform/graphics/GraphicsLayer.h" | 51 #include "core/platform/graphics/GraphicsLayer.h" |
| 53 #include "core/platform/graphics/IntPoint.h" | 52 #include "platform/geometry/FloatSize.h" |
| 54 #include "core/platform/graphics/IntRect.h" | 53 #include "platform/geometry/IntPoint.h" |
| 54 #include "platform/geometry/IntRect.h" |
| 55 #include "public/platform/WebFloatQuad.h" | 55 #include "public/platform/WebFloatQuad.h" |
| 56 #include "public/platform/WebGestureCurveTarget.h" | 56 #include "public/platform/WebGestureCurveTarget.h" |
| 57 #include "public/platform/WebLayer.h" | 57 #include "public/platform/WebLayer.h" |
| 58 #include "public/platform/WebPoint.h" | 58 #include "public/platform/WebPoint.h" |
| 59 #include "public/platform/WebRect.h" | 59 #include "public/platform/WebRect.h" |
| 60 #include "public/platform/WebSize.h" | 60 #include "public/platform/WebSize.h" |
| 61 #include "public/platform/WebString.h" | 61 #include "public/platform/WebString.h" |
| 62 #include "wtf/OwnPtr.h" | 62 #include "wtf/OwnPtr.h" |
| 63 #include "wtf/RefCounted.h" | 63 #include "wtf/RefCounted.h" |
| 64 #include "wtf/Vector.h" | 64 #include "wtf/Vector.h" |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 inline WebViewImpl* toWebViewImpl(WebView* webView) | 833 inline WebViewImpl* toWebViewImpl(WebView* webView) |
| 834 { | 834 { |
| 835 // We have no ways to check if the specified WebView is an instance of | 835 // We have no ways to check if the specified WebView is an instance of |
| 836 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 836 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 837 return static_cast<WebViewImpl*>(webView); | 837 return static_cast<WebViewImpl*>(webView); |
| 838 } | 838 } |
| 839 | 839 |
| 840 } // namespace WebKit | 840 } // namespace WebKit |
| 841 | 841 |
| 842 #endif | 842 #endif |
| OLD | NEW |