| 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 "base/macros.h" | 5 #include "base/macros.h" |
| 6 #include "mojo/edk/js/handle.h" | 6 #include "mojo/edk/js/handle.h" |
| 7 #include "mojo/edk/js/handle_close_observer.h" | 7 #include "mojo/edk/js/handle_close_observer.h" |
| 8 #include "mojo/public/cpp/system/core.h" | 8 #include "mojo/public/cpp/system/core.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 10 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 mojo::MessagePipe pipe; | 81 mojo::MessagePipe pipe; |
| 82 TestHandleWrapper wrapper(pipe.handle0.release().value()); | 82 TestHandleWrapper wrapper(pipe.handle0.release().value()); |
| 83 wrapper.AddCloseObserver(this); | 83 wrapper.AddCloseObserver(this); |
| 84 ASSERT_EQ(0, closes_observed_); | 84 ASSERT_EQ(0, closes_observed_); |
| 85 } | 85 } |
| 86 EXPECT_EQ(1, closes_observed_); | 86 EXPECT_EQ(1, closes_observed_); |
| 87 } | 87 } |
| 88 | 88 |
| 89 } // namespace js | 89 } // namespace js |
| 90 } // namespace mojo | 90 } // namespace mojo |
| OLD | NEW |