Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: Source/web/LinkHighlight.cpp

Issue 1045723009: Move core/layout/style to core/style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 18 matching lines...) Expand all
29 29
30 #include "SkMatrix44.h" 30 #include "SkMatrix44.h"
31 #include "core/dom/Node.h" 31 #include "core/dom/Node.h"
32 #include "core/dom/NodeRenderingTraversal.h" 32 #include "core/dom/NodeRenderingTraversal.h"
33 #include "core/frame/FrameView.h" 33 #include "core/frame/FrameView.h"
34 #include "core/frame/LocalFrame.h" 34 #include "core/frame/LocalFrame.h"
35 #include "core/layout/LayoutBoxModelObject.h" 35 #include "core/layout/LayoutBoxModelObject.h"
36 #include "core/layout/LayoutObject.h" 36 #include "core/layout/LayoutObject.h"
37 #include "core/layout/LayoutView.h" 37 #include "core/layout/LayoutView.h"
38 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h" 38 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h"
39 #include "core/layout/style/ShadowData.h" 39 #include "core/style/ShadowData.h"
40 #include "core/paint/DeprecatedPaintLayer.h" 40 #include "core/paint/DeprecatedPaintLayer.h"
41 #include "platform/graphics/Color.h" 41 #include "platform/graphics/Color.h"
42 #include "platform/graphics/paint/DisplayItemListScope.h" 42 #include "platform/graphics/paint/DisplayItemListScope.h"
43 #include "platform/graphics/paint/DrawingRecorder.h" 43 #include "platform/graphics/paint/DrawingRecorder.h"
44 #include "public/platform/Platform.h" 44 #include "public/platform/Platform.h"
45 #include "public/platform/WebCompositorAnimationCurve.h" 45 #include "public/platform/WebCompositorAnimationCurve.h"
46 #include "public/platform/WebCompositorSupport.h" 46 #include "public/platform/WebCompositorSupport.h"
47 #include "public/platform/WebDisplayItemList.h" 47 #include "public/platform/WebDisplayItemList.h"
48 #include "public/platform/WebFloatAnimationCurve.h" 48 #include "public/platform/WebFloatAnimationCurve.h"
49 #include "public/platform/WebFloatPoint.h" 49 #include "public/platform/WebFloatPoint.h"
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 // Make sure we update geometry on the next callback from WebViewImpl::layou t(). 361 // Make sure we update geometry on the next callback from WebViewImpl::layou t().
362 m_geometryNeedsUpdate = true; 362 m_geometryNeedsUpdate = true;
363 } 363 }
364 364
365 WebLayer* LinkHighlight::layer() 365 WebLayer* LinkHighlight::layer()
366 { 366 {
367 return clipLayer(); 367 return clipLayer();
368 } 368 }
369 369
370 } // namespace blink 370 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698