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

Unified Diff: Source/core/css/CSSSVGDocumentValue.h

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSReflectValue.cpp ('k') | Source/core/css/CSSShadowValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSSVGDocumentValue.h
diff --git a/Source/core/css/CSSSVGDocumentValue.h b/Source/core/css/CSSSVGDocumentValue.h
index edd23575a140a2c14bf2cd09307e86eb05b4ae4a..5f88b0f90f027d98e7b15ea55c924a9afe6967c0 100644
--- a/Source/core/css/CSSSVGDocumentValue.h
+++ b/Source/core/css/CSSSVGDocumentValue.h
@@ -35,9 +35,9 @@ class Document;
class CSSSVGDocumentValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSSVGDocumentValue> create(const String& url)
+ static PassRefPtr<CSSSVGDocumentValue> create(const String& url)
{
- return adoptRefWillBeNoop(new CSSSVGDocumentValue(url));
+ return adoptRef(new CSSSVGDocumentValue(url));
}
~CSSSVGDocumentValue();
@@ -49,8 +49,6 @@ public:
bool loadRequested() const { return m_loadRequested; }
bool equals(const CSSSVGDocumentValue&) const;
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
-
private:
CSSSVGDocumentValue(const String& url);
« no previous file with comments | « Source/core/css/CSSReflectValue.cpp ('k') | Source/core/css/CSSShadowValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698