OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ui/views/corewm/image_grid.h" | 5 #include "ui/wm/core/image_grid.h" |
6 | 6 |
7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
8 #include "third_party/skia/include/core/SkBitmap.h" | 8 #include "third_party/skia/include/core/SkBitmap.h" |
9 #include "ui/aura/test/aura_test_base.h" | 9 #include "ui/aura/test/aura_test_base.h" |
10 #include "ui/gfx/image/image.h" | 10 #include "ui/gfx/image/image.h" |
11 #include "ui/gfx/image/image_skia.h" | 11 #include "ui/gfx/image/image_skia.h" |
12 | 12 |
13 namespace views { | 13 namespace views { |
14 namespace corewm { | 14 namespace corewm { |
15 | 15 |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 | 333 |
334 // We shouldn't be clipping the corner images anymore. | 334 // We shouldn't be clipping the corner images anymore. |
335 EXPECT_TRUE(test_api.top_left_clip_rect().IsEmpty()); | 335 EXPECT_TRUE(test_api.top_left_clip_rect().IsEmpty()); |
336 EXPECT_TRUE(test_api.top_right_clip_rect().IsEmpty()); | 336 EXPECT_TRUE(test_api.top_right_clip_rect().IsEmpty()); |
337 EXPECT_TRUE(test_api.bottom_left_clip_rect().IsEmpty()); | 337 EXPECT_TRUE(test_api.bottom_left_clip_rect().IsEmpty()); |
338 EXPECT_TRUE(test_api.bottom_right_clip_rect().IsEmpty()); | 338 EXPECT_TRUE(test_api.bottom_right_clip_rect().IsEmpty()); |
339 } | 339 } |
340 | 340 |
341 } // namespace corewm | 341 } // namespace corewm |
342 } // namespace views | 342 } // namespace views |
OLD | NEW |