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

Unified Diff: cc/trees/property_tree.h

Issue 1499793003: Fix classes that have too many virtuals for inline constructors. Base URL: https://chromium.googlesource.com/chromium/src.git@enable-virtuals-as-complexity
Patch Set: Finish fixing the codebase that's accessible from Linux. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/fake_proxy.cc ('k') | cc/trees/property_tree.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/property_tree.h
diff --git a/cc/trees/property_tree.h b/cc/trees/property_tree.h
index 4fbcc4312ca687609158779dcdda38acd9e972d1..49aec325b5507e0529e124daedad5b81842a122c 100644
--- a/cc/trees/property_tree.h
+++ b/cc/trees/property_tree.h
@@ -459,6 +459,8 @@ class CC_EXPORT TransformTree final : public PropertyTree<TransformNode> {
class CC_EXPORT ClipTree final : public PropertyTree<ClipNode> {
public:
+ ClipTree();
danakj 2015/12/10 19:35:58 Can you explain why this change? The base class ha
Jeffrey Yasskin 2015/12/10 20:28:59 There's a templated base class, which gives an ini
+
bool operator==(const ClipTree& other) const;
void SetViewportClip(gfx::RectF viewport_rect);
@@ -470,6 +472,8 @@ class CC_EXPORT ClipTree final : public PropertyTree<ClipNode> {
class CC_EXPORT EffectTree final : public PropertyTree<EffectNode> {
public:
+ EffectTree();
+
bool operator==(const EffectTree& other) const;
void UpdateOpacities(int id);
« no previous file with comments | « cc/test/fake_proxy.cc ('k') | cc/trees/property_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698