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

Unified Diff: cc/trees/layer_tree_host_unittest_serialization.cc

Issue 2375363002: cc/blimp: Set up the framework for state serialization. (Closed)
Patch Set: test update Created 4 years, 2 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 | « cc/trees/layer_tree_host_in_process.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_unittest_serialization.cc
diff --git a/cc/trees/layer_tree_host_unittest_serialization.cc b/cc/trees/layer_tree_host_unittest_serialization.cc
index f655f48e8fbc2f204a8e9064df526492ebcb2842..7cab9ba0ca4271e57ec0d155fb01f27030982a6b 100644
--- a/cc/trees/layer_tree_host_unittest_serialization.cc
+++ b/cc/trees/layer_tree_host_unittest_serialization.cc
@@ -123,12 +123,6 @@ class LayerTreeHostSerializationTest : public testing::Test {
layer_tree_dst->inputs_.root_layer->double_sided());
EXPECT_EQ(layer_tree_src->inputs_.device_viewport_size,
layer_tree_dst->inputs_.device_viewport_size);
- EXPECT_EQ(layer_tree_src->inputs_.top_controls_shrink_blink_size,
- layer_tree_dst->inputs_.top_controls_shrink_blink_size);
- EXPECT_EQ(layer_tree_src->inputs_.top_controls_height,
- layer_tree_dst->inputs_.top_controls_height);
- EXPECT_EQ(layer_tree_src->inputs_.top_controls_shown_ratio,
- layer_tree_dst->inputs_.top_controls_shown_ratio);
EXPECT_EQ(layer_tree_src->inputs_.device_scale_factor,
layer_tree_dst->inputs_.device_scale_factor);
EXPECT_EQ(layer_tree_src->inputs_.painted_device_scale_factor,
@@ -233,12 +227,6 @@ class LayerTreeHostSerializationTest : public testing::Test {
root_layer_src->SetDoubleSided(!root_layer_src->double_sided());
layer_tree_src->inputs_.device_viewport_size = gfx::Size(3, 14);
- layer_tree_src->inputs_.top_controls_shrink_blink_size =
- !layer_tree_src->inputs_.top_controls_shrink_blink_size;
- layer_tree_src->inputs_.top_controls_height =
- layer_tree_src->inputs_.top_controls_height * 3 + 1;
- layer_tree_src->inputs_.top_controls_shown_ratio =
- layer_tree_src->inputs_.top_controls_shown_ratio * 3 + 1;
layer_tree_src->inputs_.device_scale_factor =
layer_tree_src->inputs_.device_scale_factor * 3 + 1;
layer_tree_src->inputs_.painted_device_scale_factor =
« no previous file with comments | « cc/trees/layer_tree_host_in_process.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698