| 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 16 matching lines...) Expand all Loading... |
| 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 SKY_ENGINE_WEB_WEBVIEWIMPL_H_ | 31 #ifndef SKY_ENGINE_WEB_WEBVIEWIMPL_H_ |
| 32 #define SKY_ENGINE_WEB_WEBVIEWIMPL_H_ | 32 #define SKY_ENGINE_WEB_WEBVIEWIMPL_H_ |
| 33 | 33 |
| 34 #include "sky/engine/core/rendering/HitTestResult.h" | 34 #include "sky/engine/core/rendering/HitTestResult.h" |
| 35 #include "sky/engine/platform/geometry/IntPoint.h" | 35 #include "sky/engine/platform/geometry/IntPoint.h" |
| 36 #include "sky/engine/platform/geometry/IntRect.h" | 36 #include "sky/engine/platform/geometry/IntRect.h" |
| 37 #include "sky/engine/platform/graphics/Color.h" |
| 37 #include "sky/engine/public/platform/WebInputEvent.h" | 38 #include "sky/engine/public/platform/WebInputEvent.h" |
| 38 #include "sky/engine/public/platform/WebLayer.h" | 39 #include "sky/engine/public/platform/WebLayer.h" |
| 39 #include "sky/engine/public/platform/WebPoint.h" | 40 #include "sky/engine/public/platform/WebPoint.h" |
| 40 #include "sky/engine/public/platform/WebRect.h" | 41 #include "sky/engine/public/platform/WebRect.h" |
| 41 #include "sky/engine/public/platform/WebSize.h" | 42 #include "sky/engine/public/platform/WebSize.h" |
| 42 #include "sky/engine/public/platform/WebString.h" | 43 #include "sky/engine/public/platform/WebString.h" |
| 43 #include "sky/engine/public/web/WebNavigationPolicy.h" | 44 #include "sky/engine/public/web/WebNavigationPolicy.h" |
| 44 #include "sky/engine/public/web/WebView.h" | 45 #include "sky/engine/public/web/WebView.h" |
| 45 #include "sky/engine/web/ChromeClientImpl.h" | 46 #include "sky/engine/web/ChromeClientImpl.h" |
| 46 #include "sky/engine/web/EditorClientImpl.h" | 47 #include "sky/engine/web/EditorClientImpl.h" |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 WebColor m_backgroundColorOverride; | 249 WebColor m_backgroundColorOverride; |
| 249 }; | 250 }; |
| 250 | 251 |
| 251 // We have no ways to check if the specified WebView is an instance of | 252 // We have no ways to check if the specified WebView is an instance of |
| 252 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 253 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
| 253 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 254 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
| 254 | 255 |
| 255 } // namespace blink | 256 } // namespace blink |
| 256 | 257 |
| 257 #endif // SKY_ENGINE_WEB_WEBVIEWIMPL_H_ | 258 #endif // SKY_ENGINE_WEB_WEBVIEWIMPL_H_ |
| OLD | NEW |