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

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

Issue 1481383002: [Experimental] CSSSerializer Proof-of-concept Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: snapshot: top_25 sites ser/dser now works 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
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 30 matching lines...) Expand all
41 return create(url.string(), url, image); 41 return create(url.string(), url, image);
42 } 42 }
43 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleFetchedImage* image = 0) 43 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleFetchedImage* image = 0)
44 { 44 {
45 return create(AtomicString(rawValue), url, image); 45 return create(AtomicString(rawValue), url, image);
46 } 46 }
47 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV alue, const KURL& url, StyleFetchedImage* image = 0) 47 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawV alue, const KURL& url, StyleFetchedImage* image = 0)
48 { 48 {
49 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image)); 49 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image));
50 } 50 }
51 static PassRefPtrWillBeRawPtr<CSSImageValue> deserializeAfterDispatch(CSSDes erializeStream*);
51 ~CSSImageValue(); 52 ~CSSImageValue();
52 53
53 bool isCachePending() const { return m_isCachePending; } 54 bool isCachePending() const { return m_isCachePending; }
54 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m _cachedImage.get(); } 55 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m _cachedImage.get(); }
55 StyleFetchedImage* cacheImage(Document*, CrossOriginAttributeValue = CrossOr iginAttributeNotSet); 56 StyleFetchedImage* cacheImage(Document*, CrossOriginAttributeValue = CrossOr iginAttributeNotSet);
56 57
57 const String& url() { return m_absoluteURL; } 58 const String& url() { return m_absoluteURL; }
58 59
59 void setReferrer(const Referrer& referrer) { m_referrer = referrer; } 60 void setReferrer(const Referrer& referrer) { m_referrer = referrer; }
60 const Referrer& referrer() const { return m_referrer; } 61 const Referrer& referrer() const { return m_referrer; }
61 62
62 void reResolveURL(const Document&); 63 void reResolveURL(const Document&);
63 64
64 String customCSSText() const; 65 String customCSSText() const;
65 66
66 bool hasFailedOrCanceledSubresources() const; 67 bool hasFailedOrCanceledSubresources() const;
67 68
68 bool equals(const CSSImageValue&) const; 69 bool equals(const CSSImageValue&) const;
69 70
70 bool knownToBeOpaque(const LayoutObject*) const; 71 bool knownToBeOpaque(const LayoutObject*) const;
71 72
72 PassRefPtrWillBeRawPtr<CSSImageValue> valueWithURLMadeAbsolute() 73 PassRefPtrWillBeRawPtr<CSSImageValue> valueWithURLMadeAbsolute()
73 { 74 {
74 return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get()) ; 75 return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get()) ;
75 } 76 }
76 77
77 void setInitiator(const AtomicString& name) { m_initiatorName = name; } 78 void setInitiator(const AtomicString& name) { m_initiatorName = name; }
78 79
80 void serializeAfterDispatch(CSSSerializeStream*) const;
81
79 DECLARE_TRACE_AFTER_DISPATCH(); 82 DECLARE_TRACE_AFTER_DISPATCH();
80 void restoreCachedResourceIfNeeded(Document&) const; 83 void restoreCachedResourceIfNeeded(Document&) const;
81 84
82 private: 85 private:
83 CSSImageValue(const AtomicString& rawValue, const KURL&, StyleFetchedImage*) ; 86 CSSImageValue(const AtomicString& rawValue, const KURL&, StyleFetchedImage*) ;
87 CSSImageValue(AtomicString, AtomicString, const Referrer& referrer, AtomicSt ring);
84 88
85 AtomicString m_relativeURL; 89 AtomicString m_relativeURL;
86 AtomicString m_absoluteURL; 90 AtomicString m_absoluteURL;
87 Referrer m_referrer; 91 Referrer m_referrer;
88 bool m_isCachePending; 92 bool m_isCachePending;
89 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage; 93 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage;
90 AtomicString m_initiatorName; 94 AtomicString m_initiatorName;
91 }; 95 };
92 96
93 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue()); 97 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue());
94 98
95 } // namespace blink 99 } // namespace blink
96 100
97 #endif // CSSImageValue_h 101 #endif // CSSImageValue_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSImageSetValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSImageValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698