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

Unified Diff: cc/trees/property_tree.cc

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
Index: cc/trees/property_tree.cc
diff --git a/cc/trees/property_tree.cc b/cc/trees/property_tree.cc
index a6b72e6b102d57050c07b1f924de6d00faef8310..449637145106b39c7e49e59e6b6180b9dbcb6c34 100644
--- a/cc/trees/property_tree.cc
+++ b/cc/trees/property_tree.cc
@@ -1039,6 +1039,8 @@ void TransformTree::UpdateNodeAndAncestorsHaveIntegerTranslations(
parent_node->data.node_and_ancestors_have_only_integer_translation;
}
+ClipTree::ClipTree() = default;
+
void ClipTree::SetViewportClip(gfx::RectF viewport_rect) {
if (size() < 2)
return;
@@ -1073,6 +1075,8 @@ void ClipTree::FromProtobuf(const proto::PropertyTree& proto) {
PropertyTree::FromProtobuf(proto);
}
+EffectTree::EffectTree() = default;
+
bool EffectTree::operator==(const EffectTree& other) const {
return PropertyTree::operator==(other);
}

Powered by Google App Engine
This is Rietveld 408576698