| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #include "LinkHighlight.h" | 28 #include "LinkHighlight.h" |
| 29 | 29 |
| 30 #include "SkMatrix44.h" | 30 #include "SkMatrix44.h" |
| 31 #include "WebFrameImpl.h" | 31 #include "WebFrameImpl.h" |
| 32 #include "WebKit.h" | 32 #include "WebKit.h" |
| 33 #include "WebViewImpl.h" | 33 #include "WebViewImpl.h" |
| 34 #include "core/dom/Node.h" | 34 #include "core/dom/Node.h" |
| 35 #include "core/frame/Frame.h" | 35 #include "core/frame/Frame.h" |
| 36 #include "core/frame/FrameView.h" | 36 #include "core/frame/FrameView.h" |
| 37 #include "core/platform/graphics/Color.h" | |
| 38 #include "core/rendering/CompositedLayerMapping.h" | 37 #include "core/rendering/CompositedLayerMapping.h" |
| 39 #include "core/rendering/RenderLayer.h" | 38 #include "core/rendering/RenderLayer.h" |
| 40 #include "core/rendering/RenderLayerModelObject.h" | 39 #include "core/rendering/RenderLayerModelObject.h" |
| 41 #include "core/rendering/RenderObject.h" | 40 #include "core/rendering/RenderObject.h" |
| 42 #include "core/rendering/RenderView.h" | 41 #include "core/rendering/RenderView.h" |
| 43 #include "core/rendering/style/ShadowData.h" | 42 #include "core/rendering/style/ShadowData.h" |
| 43 #include "platform/graphics/Color.h" |
| 44 #include "public/platform/Platform.h" | 44 #include "public/platform/Platform.h" |
| 45 #include "public/platform/WebAnimationCurve.h" | 45 #include "public/platform/WebAnimationCurve.h" |
| 46 #include "public/platform/WebCompositorSupport.h" | 46 #include "public/platform/WebCompositorSupport.h" |
| 47 #include "public/platform/WebFloatAnimationCurve.h" | 47 #include "public/platform/WebFloatAnimationCurve.h" |
| 48 #include "public/platform/WebFloatPoint.h" | 48 #include "public/platform/WebFloatPoint.h" |
| 49 #include "public/platform/WebRect.h" | 49 #include "public/platform/WebRect.h" |
| 50 #include "public/platform/WebSize.h" | 50 #include "public/platform/WebSize.h" |
| 51 #include "wtf/CurrentTime.h" | 51 #include "wtf/CurrentTime.h" |
| 52 | 52 |
| 53 using namespace WebCore; | 53 using namespace WebCore; |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 // Make sure we update geometry on the next callback from WebViewImpl::layou
t(). | 334 // Make sure we update geometry on the next callback from WebViewImpl::layou
t(). |
| 335 m_geometryNeedsUpdate = true; | 335 m_geometryNeedsUpdate = true; |
| 336 } | 336 } |
| 337 | 337 |
| 338 WebLayer* LinkHighlight::layer() | 338 WebLayer* LinkHighlight::layer() |
| 339 { | 339 { |
| 340 return clipLayer(); | 340 return clipLayer(); |
| 341 } | 341 } |
| 342 | 342 |
| 343 } // namespace WeKit | 343 } // namespace WeKit |
| OLD | NEW |