| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "web/LinkHighlightImpl.h" | 26 #include "web/LinkHighlightImpl.h" |
| 27 | 27 |
| 28 #include "core/dom/LayoutTreeBuilderTraversal.h" | 28 #include "core/dom/LayoutTreeBuilderTraversal.h" |
| 29 #include "core/dom/Node.h" | 29 #include "core/dom/Node.h" |
| 30 #include "core/frame/FrameView.h" | 30 #include "core/frame/FrameView.h" |
| 31 #include "core/frame/LocalFrame.h" | 31 #include "core/frame/LocalFrame.h" |
| 32 #include "core/layout/LayoutBoxModelObject.h" | 32 #include "core/layout/LayoutBoxModelObject.h" |
| 33 #include "core/layout/LayoutObject.h" | 33 #include "core/layout/LayoutObject.h" |
| 34 #include "core/layout/LayoutView.h" | |
| 35 #include "core/layout/compositing/CompositedLayerMapping.h" | 34 #include "core/layout/compositing/CompositedLayerMapping.h" |
| 36 #include "core/paint/PaintLayer.h" | 35 #include "core/paint/PaintLayer.h" |
| 37 #include "platform/RuntimeEnabledFeatures.h" | 36 #include "platform/RuntimeEnabledFeatures.h" |
| 38 #include "platform/animation/CompositorAnimationCurve.h" | 37 #include "platform/animation/CompositorAnimationCurve.h" |
| 39 #include "platform/animation/CompositorFloatAnimationCurve.h" | 38 #include "platform/animation/CompositorFloatAnimationCurve.h" |
| 40 #include "platform/animation/TimingFunction.h" | 39 #include "platform/animation/TimingFunction.h" |
| 41 #include "platform/graphics/Color.h" | 40 #include "platform/graphics/Color.h" |
| 42 #include "platform/graphics/CompositorFactory.h" | 41 #include "platform/graphics/CompositorFactory.h" |
| 43 #include "platform/graphics/GraphicsLayer.h" | 42 #include "platform/graphics/GraphicsLayer.h" |
| 44 #include "platform/graphics/paint/DrawingRecorder.h" | 43 #include "platform/graphics/paint/DrawingRecorder.h" |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 { | 380 { |
| 382 return clipLayer(); | 381 return clipLayer(); |
| 383 } | 382 } |
| 384 | 383 |
| 385 CompositorAnimationPlayer* LinkHighlightImpl::compositorPlayer() const | 384 CompositorAnimationPlayer* LinkHighlightImpl::compositorPlayer() const |
| 386 { | 385 { |
| 387 return m_compositorPlayer.get(); | 386 return m_compositorPlayer.get(); |
| 388 } | 387 } |
| 389 | 388 |
| 390 } // namespace blink | 389 } // namespace blink |
| OLD | NEW |