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