| 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 28 matching lines...) Expand all Loading... |
| 39 #include "core/rendering/compositing/CompositedLayerMapping.h" | 39 #include "core/rendering/compositing/CompositedLayerMapping.h" |
| 40 #include "core/rendering/style/ShadowData.h" | 40 #include "core/rendering/style/ShadowData.h" |
| 41 #include "platform/graphics/Color.h" | 41 #include "platform/graphics/Color.h" |
| 42 #include "public/platform/Platform.h" | 42 #include "public/platform/Platform.h" |
| 43 #include "public/platform/WebCompositorAnimationCurve.h" | 43 #include "public/platform/WebCompositorAnimationCurve.h" |
| 44 #include "public/platform/WebCompositorSupport.h" | 44 #include "public/platform/WebCompositorSupport.h" |
| 45 #include "public/platform/WebFloatAnimationCurve.h" | 45 #include "public/platform/WebFloatAnimationCurve.h" |
| 46 #include "public/platform/WebFloatPoint.h" | 46 #include "public/platform/WebFloatPoint.h" |
| 47 #include "public/platform/WebRect.h" | 47 #include "public/platform/WebRect.h" |
| 48 #include "public/platform/WebSize.h" | 48 #include "public/platform/WebSize.h" |
| 49 #include "public/web/WebKit.h" | 49 #include "public/web/Sky.h" |
| 50 #include "web/WebLocalFrameImpl.h" | 50 #include "web/WebLocalFrameImpl.h" |
| 51 #include "web/WebSettingsImpl.h" | 51 #include "web/WebSettingsImpl.h" |
| 52 #include "web/WebViewImpl.h" | 52 #include "web/WebViewImpl.h" |
| 53 #include "wtf/CurrentTime.h" | 53 #include "wtf/CurrentTime.h" |
| 54 | 54 |
| 55 namespace blink { | 55 namespace blink { |
| 56 | 56 |
| 57 class WebViewImpl; | 57 class WebViewImpl; |
| 58 | 58 |
| 59 PassOwnPtr<LinkHighlight> LinkHighlight::create(Node* node, WebViewImpl* owningW
ebViewImpl) | 59 PassOwnPtr<LinkHighlight> LinkHighlight::create(Node* node, WebViewImpl* owningW
ebViewImpl) |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 // Make sure we update geometry on the next callback from WebViewImpl::layou
t(). | 338 // Make sure we update geometry on the next callback from WebViewImpl::layou
t(). |
| 339 m_geometryNeedsUpdate = true; | 339 m_geometryNeedsUpdate = true; |
| 340 } | 340 } |
| 341 | 341 |
| 342 WebLayer* LinkHighlight::layer() | 342 WebLayer* LinkHighlight::layer() |
| 343 { | 343 { |
| 344 return clipLayer(); | 344 return clipLayer(); |
| 345 } | 345 } |
| 346 | 346 |
| 347 } // namespace blink | 347 } // namespace blink |
| OLD | NEW |