| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "ash/wm/image_grid.h" |
| 5 #include "testing/gtest/include/gtest/gtest.h" | 6 #include "testing/gtest/include/gtest/gtest.h" |
| 6 #include "third_party/skia/include/core/SkBitmap.h" | 7 #include "third_party/skia/include/core/SkBitmap.h" |
| 7 #include "ui/aura_shell/image_grid.h" | |
| 8 #include "ui/aura_shell/test/aura_shell_test_base.h" | 8 #include "ui/aura_shell/test/aura_shell_test_base.h" |
| 9 #include "ui/gfx/image/image.h" | 9 #include "ui/gfx/image/image.h" |
| 10 | 10 |
| 11 using aura_shell::internal::ImageGrid; | 11 using aura_shell::internal::ImageGrid; |
| 12 | 12 |
| 13 namespace aura_shell { | 13 namespace aura_shell { |
| 14 namespace test { | 14 namespace test { |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 263 |
| 264 // We shouldn't be clipping the corner images anymore. | 264 // We shouldn't be clipping the corner images anymore. |
| 265 EXPECT_TRUE(test_api.top_left_clip_rect().IsEmpty()); | 265 EXPECT_TRUE(test_api.top_left_clip_rect().IsEmpty()); |
| 266 EXPECT_TRUE(test_api.top_right_clip_rect().IsEmpty()); | 266 EXPECT_TRUE(test_api.top_right_clip_rect().IsEmpty()); |
| 267 EXPECT_TRUE(test_api.bottom_left_clip_rect().IsEmpty()); | 267 EXPECT_TRUE(test_api.bottom_left_clip_rect().IsEmpty()); |
| 268 EXPECT_TRUE(test_api.bottom_right_clip_rect().IsEmpty()); | 268 EXPECT_TRUE(test_api.bottom_right_clip_rect().IsEmpty()); |
| 269 } | 269 } |
| 270 | 270 |
| 271 } // namespace test | 271 } // namespace test |
| 272 } // namespace aura_shell | 272 } // namespace aura_shell |
| OLD | NEW |