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

Side by Side Diff: cc/trees/layer_tree_host_unittest_serialization.cc

Issue 1519293002: Add support for (de)serializing LayerTreeHost. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added framework for (de)serializing 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 unified diff | Download patch
« cc/proto/layer_tree_host.proto ('K') | « cc/trees/layer_tree_host.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "cc/trees/layer_tree_host.h"
6
7 #include "cc/test/layer_tree_test.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 namespace cc {
11 namespace {
12
13 // These tests deal with serialization.
14 class LayerTreeHostSerializationTest : public LayerTreeTest {
15 protected:
16 void SetupTree() override { LayerTreeTest::SetupTree(); }
17 };
18
19 class LayerTreeHostDumbSerializationTest
20 : public LayerTreeHostSerializationTest {
21 public:
22 void BeginTest() override {}
23 void AfterTest() override {}
24 };
25
26 TEST_F(LayerTreeHostDumbSerializationTest, FooBar) {
27 EXPECT_TRUE(true);
28 }
29
30 } // namespace
31 } // namespace cc
OLDNEW
« cc/proto/layer_tree_host.proto ('K') | « cc/trees/layer_tree_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698