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

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

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: (Hopefully) Builds with oilpan now Created 5 years, 6 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
Index: Source/core/css/CSSSVGDocumentValue.cpp
diff --git a/Source/core/css/CSSSVGDocumentValue.cpp b/Source/core/css/CSSSVGDocumentValue.cpp
index b131f99bfb1993d9895c35dd2bf71f9ea4ab06d5..c14b7f71a185873849d294a8f57e234388b04619 100644
--- a/Source/core/css/CSSSVGDocumentValue.cpp
+++ b/Source/core/css/CSSSVGDocumentValue.cpp
@@ -35,7 +35,7 @@
namespace blink {
CSSSVGDocumentValue::CSSSVGDocumentValue(const String& url)
- : CSSValue(CSSSVGDocumentClass)
+ : CSSValueObject(CSSSVGDocumentClass)
, m_url(url)
, m_loadRequested(false)
{

Powered by Google App Engine
This is Rietveld 408576698