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

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

Issue 462613002: Cleanup namespace usage in Source/web/[A-V]*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing comments Created 6 years, 4 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
« no previous file with comments | « Source/web/InspectorFrontendClientImpl.h ('k') | Source/web/LocalFileSystemClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20 matching lines...) Expand all
31 #include "platform/graphics/GraphicsLayer.h" 31 #include "platform/graphics/GraphicsLayer.h"
32 #include "platform/graphics/Path.h" 32 #include "platform/graphics/Path.h"
33 #include "public/platform/WebCompositorAnimationDelegate.h" 33 #include "public/platform/WebCompositorAnimationDelegate.h"
34 #include "public/platform/WebContentLayer.h" 34 #include "public/platform/WebContentLayer.h"
35 #include "public/platform/WebContentLayerClient.h" 35 #include "public/platform/WebContentLayerClient.h"
36 #include "public/platform/WebLayer.h" 36 #include "public/platform/WebLayer.h"
37 #include "wtf/OwnPtr.h" 37 #include "wtf/OwnPtr.h"
38 #include "wtf/Vector.h" 38 #include "wtf/Vector.h"
39 39
40 namespace blink { 40 namespace blink {
41
41 class RenderLayer; 42 class RenderLayer;
42 class RenderObject; 43 class RenderObject;
43 class Node; 44 class Node;
44 }
45
46 namespace blink {
47
48 struct WebFloatRect; 45 struct WebFloatRect;
49 struct WebRect; 46 struct WebRect;
50 class WebViewImpl; 47 class WebViewImpl;
51 48
52 class LinkHighlight FINAL : public WebContentLayerClient, public WebCompositorAn imationDelegate, blink::LinkHighlightClient { 49 class LinkHighlight FINAL : public WebContentLayerClient, public WebCompositorAn imationDelegate, LinkHighlightClient {
53 public: 50 public:
54 static PassOwnPtr<LinkHighlight> create(blink::Node*, WebViewImpl*); 51 static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*);
55 virtual ~LinkHighlight(); 52 virtual ~LinkHighlight();
56 53
57 WebContentLayer* contentLayer(); 54 WebContentLayer* contentLayer();
58 WebLayer* clipLayer(); 55 WebLayer* clipLayer();
59 void startHighlightAnimationIfNeeded(); 56 void startHighlightAnimationIfNeeded();
60 void updateGeometry(); 57 void updateGeometry();
61 58
62 // WebContentLayerClient implementation. 59 // WebContentLayerClient implementation.
63 virtual void paintContents(WebCanvas*, const WebRect& clipRect, bool canPain tLCDText, WebFloatRect& opaque, 60 virtual void paintContents(WebCanvas*, const WebRect& clipRect, bool canPain tLCDText, WebFloatRect& opaque,
64 WebContentLayerClient::GraphicsContextStatus = GraphicsContextEnabled) O VERRIDE; 61 WebContentLayerClient::GraphicsContextStatus = GraphicsContextEnabled) O VERRIDE;
65 62
66 // WebCompositorAnimationDelegate implementation. 63 // WebCompositorAnimationDelegate implementation.
67 virtual void notifyAnimationStarted(double monotonicTime, blink::WebComposit orAnimation::TargetProperty) OVERRIDE; 64 virtual void notifyAnimationStarted(double monotonicTime, WebCompositorAnima tion::TargetProperty) OVERRIDE;
68 virtual void notifyAnimationFinished(double monotonicTime, blink::WebComposi torAnimation::TargetProperty) OVERRIDE; 65 virtual void notifyAnimationFinished(double monotonicTime, WebCompositorAnim ation::TargetProperty) OVERRIDE;
69 66
70 // LinkHighlightClient inplementation. 67 // LinkHighlightClient inplementation.
71 virtual void invalidate() OVERRIDE; 68 virtual void invalidate() OVERRIDE;
72 virtual WebLayer* layer() OVERRIDE; 69 virtual WebLayer* layer() OVERRIDE;
73 virtual void clearCurrentGraphicsLayer() OVERRIDE; 70 virtual void clearCurrentGraphicsLayer() OVERRIDE;
74 71
75 blink::GraphicsLayer* currentGraphicsLayerForTesting() const { return m_curr entGraphicsLayer; } 72 GraphicsLayer* currentGraphicsLayerForTesting() const { return m_currentGrap hicsLayer; }
76 73
77 private: 74 private:
78 LinkHighlight(blink::Node*, WebViewImpl*); 75 LinkHighlight(Node*, WebViewImpl*);
79 76
80 void releaseResources(); 77 void releaseResources();
81 void computeQuads(blink::Node*, WTF::Vector<blink::FloatQuad>&) const; 78 void computeQuads(Node*, WTF::Vector<FloatQuad>&) const;
82 79
83 blink::RenderLayer* computeEnclosingCompositingLayer(); 80 RenderLayer* computeEnclosingCompositingLayer();
84 void clearGraphicsLayerLinkHighlightPointer(); 81 void clearGraphicsLayerLinkHighlightPointer();
85 // This function computes the highlight path, and returns true if it has cha nged 82 // This function computes the highlight path, and returns true if it has cha nged
86 // size since the last call to this function. 83 // size since the last call to this function.
87 bool computeHighlightLayerPathAndPosition(blink::RenderLayer*); 84 bool computeHighlightLayerPathAndPosition(RenderLayer*);
88 85
89 OwnPtr<WebContentLayer> m_contentLayer; 86 OwnPtr<WebContentLayer> m_contentLayer;
90 OwnPtr<WebLayer> m_clipLayer; 87 OwnPtr<WebLayer> m_clipLayer;
91 blink::Path m_path; 88 Path m_path;
92 89
93 RefPtrWillBePersistent<blink::Node> m_node; 90 RefPtrWillBePersistent<Node> m_node;
94 WebViewImpl* m_owningWebViewImpl; 91 WebViewImpl* m_owningWebViewImpl;
95 blink::GraphicsLayer* m_currentGraphicsLayer; 92 GraphicsLayer* m_currentGraphicsLayer;
96 93
97 bool m_geometryNeedsUpdate; 94 bool m_geometryNeedsUpdate;
98 bool m_isAnimating; 95 bool m_isAnimating;
99 double m_startTime; 96 double m_startTime;
100 }; 97 };
101 98
102 } // namespace blink 99 } // namespace blink
103 100
104 #endif 101 #endif
OLDNEW
« no previous file with comments | « Source/web/InspectorFrontendClientImpl.h ('k') | Source/web/LocalFileSystemClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698