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

Side by Side Diff: Source/core/rendering/RenderLayerClipPathInfo.h

Issue 423823004: Add support for SVG Clip paths in HTML (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Try to correct A+ mode 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (c) 2014, Google Inc. All rights reserved.
pdr. 2014/07/28 16:23:52 Lets just leave this how it was instead of updatin
f(malita) 2014/07/29 01:21:16 This header is new, should be using the updated li
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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer 11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the 12 * in the documentation and/or other materials provided with the
13 * distribution. 13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its 14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from 15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission. 16 * this software without specific prior written permission.
17 * 17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef RenderLayerClipPathInfo_h
32 #define RenderLayerClipPathInfo_h
31 33
32 #ifndef V8CustomXPathNSResolver_h 34 #include "core/dom/Element.h"
Stephen White 2014/07/29 15:26:18 Nit: this #include is unnecessary (you'll get it v
Shanmuga Pandi 2014/08/01 05:20:39 Done.
33 #define V8CustomXPathNSResolver_h 35 #include "core/fetch/DocumentResource.h"
34 36 #include "core/rendering/ClipPathOperation.h"
Stephen White 2014/07/29 15:26:18 Looks like you could forward-declare ClipPathOpera
Shanmuga Pandi 2014/08/01 05:20:39 Done.
35 #include "core/xml/XPathNSResolver.h" 37 #include "core/svg/SVGClipPathElement.h"
36 #include "wtf/Forward.h"
37 #include "wtf/RefPtr.h" 38 #include "wtf/RefPtr.h"
38 #include <v8.h>
39 39
40 namespace blink { 40 namespace blink {
41 41
42 // V8CustomXPathNSResolver does not create a persistent handle to the 42 class RenderLayer;
43 // given resolver object. So the lifetime of V8CustomXPathNSResolver 43 class RenderLayerClipPathInfo;
44 // must not exceed the lifetime of the passed handle. 44
45 class V8CustomXPathNSResolver FINAL : public XPathNSResolver { 45 typedef HashMap<const RenderLayer*, RenderLayerClipPathInfo*> RenderLayerClipPat hInfoMap;
46
47 class RenderLayerClipPathInfo FINAL : public DocumentResourceClient {
46 public: 48 public:
47 static PassRefPtrWillBeRawPtr<V8CustomXPathNSResolver> create(v8::Handle<v8: :Object> resolver, v8::Isolate*); 49 static RenderLayerClipPathInfo* clipPathInfoForRenderLayer(const RenderLayer *);
50 static RenderLayerClipPathInfo* createClipPathInfoForRenderLayerIfNeeded(Ren derLayer*);
51 static void removeClipPathInfoForRenderLayer(RenderLayer*);
48 52
49 virtual AtomicString lookupNamespaceURI(const String& prefix) OVERRIDE; 53 void updateReferenceClipPathClients(ClipPathOperation*);
50 54 void removeReferenceClipPathClients();
51 virtual void trace(Visitor*) OVERRIDE;
52 55
53 private: 56 private:
54 V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver, v8::Isolate*); 57 RenderLayerClipPathInfo(RenderLayer*);
58 virtual ~RenderLayerClipPathInfo();
55 59
56 v8::Handle<v8::Object> m_resolver; // Handle to resolver object. 60 RenderLayer* m_layer;
57 v8::Isolate* m_isolate; 61
62 static RenderLayerClipPathInfoMap* s_clipPathMap;
63 RefPtr<SVGClipPathElement> m_clipPathElement;
58 }; 64 };
59 65
60 } // namespace blink 66 } // namespace blink
61 67
62 #endif // V8CustomXPathNSResolver_h 68 #endif // RenderLayerClipPathInfo_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698