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

Unified Diff: Source/core/css/resolver/StyleBuilder.h

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: Rebase Created 5 years, 5 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/resolver/StyleBuilder.h
diff --git a/Source/core/css/resolver/StyleBuilder.h b/Source/core/css/resolver/StyleBuilder.h
index bf42af5c8fd76f8a62264ce8c137a574dca3b10e..28e64069abb7096f1f0865c9943ef9f6d020b294 100644
--- a/Source/core/css/resolver/StyleBuilder.h
+++ b/Source/core/css/resolver/StyleBuilder.h
@@ -43,10 +43,10 @@ class StyleResolverState;
class CORE_EXPORT StyleBuilder {
STATIC_ONLY(StyleBuilder);
public:
- static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*);
+ static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue);
private:
- static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
+ static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue, bool isInitial, bool isInherit);
};
}
« no previous file with comments | « Source/core/css/resolver/FilterOperationResolver.cpp ('k') | Source/core/css/resolver/StyleBuilderConverter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698