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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSImageValue.h

Issue 1585623003: Support SVG fragment URLs in cross faded images (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp ('k') | no next file » | 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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV alue, const KURL& url, StyleFetchedImage* image = 0) 48 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV alue, const KURL& url, StyleFetchedImage* image = 0)
49 { 49 {
50 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image)); 50 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image));
51 } 51 }
52 ~CSSImageValue(); 52 ~CSSImageValue();
53 53
54 bool isCachePending() const { return m_isCachePending; } 54 bool isCachePending() const { return m_isCachePending; }
55 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m _cachedImage.get(); } 55 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m _cachedImage.get(); }
56 StyleFetchedImage* cacheImage(Document*, CrossOriginAttributeValue = CrossOr iginAttributeNotSet); 56 StyleFetchedImage* cacheImage(Document*, CrossOriginAttributeValue = CrossOr iginAttributeNotSet);
57 57
58 const String& url() { return m_absoluteURL; } 58 const String& url() const { return m_absoluteURL; }
59 59
60 void setReferrer(const Referrer& referrer) { m_referrer = referrer; } 60 void setReferrer(const Referrer& referrer) { m_referrer = referrer; }
61 const Referrer& referrer() const { return m_referrer; } 61 const Referrer& referrer() const { return m_referrer; }
62 62
63 void reResolveURL(const Document&); 63 void reResolveURL(const Document&);
64 64
65 String customCSSText() const; 65 String customCSSText() const;
66 66
67 bool hasFailedOrCanceledSubresources() const; 67 bool hasFailedOrCanceledSubresources() const;
68 68
(...skipping 20 matching lines...) Expand all
89 bool m_isCachePending; 89 bool m_isCachePending;
90 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage; 90 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage;
91 AtomicString m_initiatorName; 91 AtomicString m_initiatorName;
92 }; 92 };
93 93
94 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue()); 94 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue());
95 95
96 } // namespace blink 96 } // namespace blink
97 97
98 #endif // CSSImageValue_h 98 #endif // CSSImageValue_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698