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

Side by Side Diff: Source/platform/graphics/GraphicsLayer.h

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
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
11 * notice, this list of conditions and the following disclaimer in the 11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 12 * documentation and/or other materials provided with the distribution.
13 * 13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY 14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef GraphicsLayer_h 27 #ifndef GraphicsLayer_h
28 #define GraphicsLayer_h 28 #define GraphicsLayer_h
29 29
30 #include "core/platform/graphics/GraphicsLayerClient.h" 30 #include "platform/PlatformExport.h"
31 #include "core/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h"
32 #include "core/platform/graphics/filters/FilterOperations.h"
33 #include "platform/geometry/FloatPoint.h" 31 #include "platform/geometry/FloatPoint.h"
34 #include "platform/geometry/FloatPoint3D.h" 32 #include "platform/geometry/FloatPoint3D.h"
35 #include "platform/geometry/FloatSize.h" 33 #include "platform/geometry/FloatSize.h"
36 #include "platform/geometry/IntRect.h" 34 #include "platform/geometry/IntRect.h"
37 #include "platform/graphics/Color.h" 35 #include "platform/graphics/Color.h"
36 #include "platform/graphics/GraphicsLayerClient.h"
37 #include "platform/graphics/OpaqueRectTrackingContentLayerDelegate.h"
38 #include "platform/graphics/filters/FilterOperations.h"
38 #include "platform/transforms/TransformationMatrix.h" 39 #include "platform/transforms/TransformationMatrix.h"
39 #include "wtf/OwnPtr.h"
40 #include "wtf/PassOwnPtr.h"
41 #include "wtf/Vector.h"
42
43 #include "public/platform/WebAnimationDelegate.h" 40 #include "public/platform/WebAnimationDelegate.h"
44 #include "public/platform/WebCompositingReasons.h" 41 #include "public/platform/WebCompositingReasons.h"
45 #include "public/platform/WebContentLayer.h" 42 #include "public/platform/WebContentLayer.h"
46 #include "public/platform/WebImageLayer.h" 43 #include "public/platform/WebImageLayer.h"
47 #include "public/platform/WebLayerClient.h" 44 #include "public/platform/WebLayerClient.h"
48 #include "public/platform/WebLayerScrollClient.h" 45 #include "public/platform/WebLayerScrollClient.h"
49 #include "public/platform/WebNinePatchLayer.h" 46 #include "public/platform/WebNinePatchLayer.h"
50 #include "public/platform/WebSolidColorLayer.h" 47 #include "public/platform/WebSolidColorLayer.h"
48 #include "wtf/OwnPtr.h"
49 #include "wtf/PassOwnPtr.h"
50 #include "wtf/Vector.h"
51 51
52 namespace blink { 52 namespace blink {
53 class GraphicsLayerFactoryChromium; 53 class GraphicsLayerFactoryChromium;
54 class WebAnimation; 54 class WebAnimation;
55 class WebGraphicsLayerDebugInfo; 55 class WebGraphicsLayerDebugInfo;
56 class WebLayer; 56 class WebLayer;
57 } 57 }
58 58
59 namespace WebCore { 59 namespace WebCore {
60 60
61 class FloatRect; 61 class FloatRect;
62 class GraphicsContext; 62 class GraphicsContext;
63 class GraphicsLayerFactory; 63 class GraphicsLayerFactory;
64 class Image; 64 class Image;
65 class ScrollableArea; 65 class ScrollableArea;
66 class TextStream; 66 class TextStream;
67 67
68 // FIXME: find a better home for this declaration. 68 // FIXME: find a better home for this declaration.
69 class LinkHighlightClient { 69 class PLATFORM_EXPORT LinkHighlightClient {
70 public: 70 public:
71 virtual void invalidate() = 0; 71 virtual void invalidate() = 0;
72 virtual void clearCurrentGraphicsLayer() = 0; 72 virtual void clearCurrentGraphicsLayer() = 0;
73 virtual blink::WebLayer* layer() = 0; 73 virtual blink::WebLayer* layer() = 0;
74 74
75 protected: 75 protected:
76 virtual ~LinkHighlightClient() { } 76 virtual ~LinkHighlightClient() { }
77 }; 77 };
78 78
79 // GraphicsLayer is an abstraction for a rendering surface with backing store, 79 // GraphicsLayer is an abstraction for a rendering surface with backing store,
80 // which may have associated transformation and animations. 80 // which may have associated transformation and animations.
81 81
82 class GraphicsLayer : public GraphicsContextPainter, public blink::WebAnimationD elegate, public blink::WebLayerScrollClient, public blink::WebLayerClient { 82 class PLATFORM_EXPORT GraphicsLayer : public GraphicsContextPainter, public blin k::WebAnimationDelegate, public blink::WebLayerScrollClient, public blink::WebLa yerClient {
83 WTF_MAKE_NONCOPYABLE(GraphicsLayer); WTF_MAKE_FAST_ALLOCATED; 83 WTF_MAKE_NONCOPYABLE(GraphicsLayer); WTF_MAKE_FAST_ALLOCATED;
84 public: 84 public:
85 static PassOwnPtr<GraphicsLayer> create(GraphicsLayerFactory*, GraphicsLayer Client*); 85 static PassOwnPtr<GraphicsLayer> create(GraphicsLayerFactory*, GraphicsLayer Client*);
86 86
87 virtual ~GraphicsLayer(); 87 virtual ~GraphicsLayer();
88 88
89 GraphicsLayerClient* client() const { return m_client; } 89 GraphicsLayerClient* client() const { return m_client; }
90 90
91 // blink::WebLayerClient implementation. 91 // blink::WebLayerClient implementation.
92 virtual blink::WebString debugName(blink::WebLayer*) OVERRIDE; 92 virtual blink::WebString debugName(blink::WebLayer*) OVERRIDE;
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 410
411 411
412 } // namespace WebCore 412 } // namespace WebCore
413 413
414 #ifndef NDEBUG 414 #ifndef NDEBUG
415 // Outside the WebCore namespace for ease of invocation from gdb. 415 // Outside the WebCore namespace for ease of invocation from gdb.
416 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer); 416 void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer);
417 #endif 417 #endif
418 418
419 #endif // GraphicsLayer_h 419 #endif // GraphicsLayer_h
OLDNEW
« no previous file with comments | « Source/platform/graphics/GraphicsContextStateSaver.h ('k') | Source/platform/graphics/GraphicsLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698