| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <algorithm> | 5 #include <algorithm> |
| 6 #include <ostream> | 6 #include <ostream> |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "mojo/public/bindings/tests/sample_service.mojom.h" | 9 #include "mojo/public/bindings/tests/sample_service.mojom.h" |
| 10 #include "mojo/public/cpp/bindings/allocation_scope.h" | 10 #include "mojo/public/cpp/bindings/allocation_scope.h" |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 | 346 |
| 347 EXPECT_EQ(1u, full.shape_masks().size()); | 347 EXPECT_EQ(1u, full.shape_masks().size()); |
| 348 EXPECT_EQ(1 << imported::SHAPE_RECTANGLE, full.shape_masks()[0]); | 348 EXPECT_EQ(1 << imported::SHAPE_RECTANGLE, full.shape_masks()[0]); |
| 349 | 349 |
| 350 EXPECT_EQ(imported::SHAPE_CIRCLE, full.thing().shape()); | 350 EXPECT_EQ(imported::SHAPE_CIRCLE, full.thing().shape()); |
| 351 EXPECT_EQ(imported::COLOR_BLACK, full.thing().color()); | 351 EXPECT_EQ(imported::COLOR_BLACK, full.thing().color()); |
| 352 } | 352 } |
| 353 | 353 |
| 354 } // namespace | 354 } // namespace |
| 355 } // namespace sample | 355 } // namespace sample |
| OLD | NEW |