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

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

Issue 1461193003: Revert of [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make patch applicable Created 5 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ~CSSImageValue(); 51 ~CSSImageValue();
52 52
53 bool isCachePending() const { return m_isCachePending; } 53 bool isCachePending() const { return m_isCachePending; }
54 StyleFetchedImage* cachedImage() const; 54 StyleFetchedImage* cachedImage() const { ASSERT(!isCachePending()); return m _cachedImage.get(); }
55 StyleFetchedImage* cacheImage(Document*, const ResourceLoaderOptions&); 55 StyleFetchedImage* cacheImage(Document*, const ResourceLoaderOptions&);
56 StyleFetchedImage* cacheImage(Document* document) { return cacheImage(docume nt, ResourceFetcher::defaultResourceOptions()); } 56 StyleFetchedImage* cacheImage(Document* document) { return cacheImage(docume nt, ResourceFetcher::defaultResourceOptions()); }
57 57
58 const String& url() { return m_absoluteURL; } 58 const String& url() { 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
69 bool equals(const CSSImageValue&) const; 69 bool equals(const CSSImageValue&) const;
70 70
71 bool knownToBeOpaque(const LayoutObject*) const; 71 bool knownToBeOpaque(const LayoutObject*) const;
72 72
73 PassRefPtrWillBeRawPtr<CSSImageValue> valueWithURLMadeAbsolute(); 73 PassRefPtrWillBeRawPtr<CSSImageValue> valueWithURLMadeAbsolute()
74 {
75 return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get()) ;
76 }
74 77
75 void setInitiator(const AtomicString& name) { m_initiatorName = name; } 78 void setInitiator(const AtomicString& name) { m_initiatorName = name; }
76 79
77 DECLARE_TRACE_AFTER_DISPATCH(); 80 DECLARE_TRACE_AFTER_DISPATCH();
78 void restoreCachedResourceIfNeeded(Document&) const; 81 void restoreCachedResourceIfNeeded(Document&) const;
79 82
80 private: 83 private:
81 CSSImageValue(const AtomicString& rawValue, const KURL&, StyleFetchedImage*) ; 84 CSSImageValue(const AtomicString& rawValue, const KURL&, StyleFetchedImage*) ;
82 85
83 AtomicString m_relativeURL; 86 AtomicString m_relativeURL;
84 AtomicString m_absoluteURL; 87 AtomicString m_absoluteURL;
85 Referrer m_referrer; 88 Referrer m_referrer;
86 bool m_isCachePending; 89 bool m_isCachePending;
87 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage; 90 RefPtrWillBeMember<StyleFetchedImage> m_cachedImage;
88 AtomicString m_initiatorName; 91 AtomicString m_initiatorName;
89 }; 92 };
90 93
91 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue()); 94 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue());
92 95
93 } // namespace blink 96 } // namespace blink
94 97
95 #endif // CSSImageValue_h 98 #endif // CSSImageValue_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSFontFaceSource.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