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

Side by Side Diff: cc/damage_tracker_unittest.cc

Issue 12472028: Part 1 of cc/ directory shuffles: base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/damage_tracker.h" 5 #include "cc/damage_tracker.h"
6 6
7 #include "cc/base/math_util.h"
7 #include "cc/layer_impl.h" 8 #include "cc/layer_impl.h"
8 #include "cc/layer_tree_host_common.h" 9 #include "cc/layer_tree_host_common.h"
9 #include "cc/math_util.h"
10 #include "cc/single_thread_proxy.h" 10 #include "cc/single_thread_proxy.h"
11 #include "cc/test/fake_impl_proxy.h" 11 #include "cc/test/fake_impl_proxy.h"
12 #include "cc/test/fake_layer_tree_host_impl.h" 12 #include "cc/test/fake_layer_tree_host_impl.h"
13 #include "cc/test/geometry_test_utils.h" 13 #include "cc/test/geometry_test_utils.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperation. h" 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperation. h"
16 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations .h" 16 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations .h"
17 #include "third_party/skia/include/effects/SkBlurImageFilter.h" 17 #include "third_party/skia/include/effects/SkBlurImageFilter.h"
18 #include "ui/gfx/quad_f.h" 18 #include "ui/gfx/quad_f.h"
19 19
(...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 EXPECT_TRUE(rootDamageRect.IsEmpty()); 1162 EXPECT_TRUE(rootDamageRect.IsEmpty());
1163 1163
1164 // Damage should remain empty even after one frame, since there's yet no new damage 1164 // Damage should remain empty even after one frame, since there's yet no new damage
1165 emulateDrawingOneFrame(root.get()); 1165 emulateDrawingOneFrame(root.get());
1166 rootDamageRect = root->render_surface()->damage_tracker()->current_damage_re ct(); 1166 rootDamageRect = root->render_surface()->damage_tracker()->current_damage_re ct();
1167 EXPECT_TRUE(rootDamageRect.IsEmpty()); 1167 EXPECT_TRUE(rootDamageRect.IsEmpty());
1168 } 1168 }
1169 1169
1170 } // namespace 1170 } // namespace
1171 } // namespace cc 1171 } // namespace cc
OLDNEW
« cc/cc.gyp ('K') | « cc/damage_tracker.cc ('k') | cc/debug_border_draw_quad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698