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

Side by Side Diff: mojo/edk/js/handle_unittest.cc

Issue 1676913002: [mojo] Delete third_party/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: let's try that again Created 4 years, 10 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
« no previous file with comments | « mojo/edk/js/handle_close_observer.h ('k') | mojo/edk/js/mojo_runner_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 namespace mojo { 11 namespace mojo {
12 namespace edk { 12 namespace edk {
13 namespace js {
13 14
14 class HandleWrapperTest : public testing::Test, 15 class HandleWrapperTest : public testing::Test,
15 public HandleCloseObserver { 16 public HandleCloseObserver {
16 public: 17 public:
17 HandleWrapperTest() : closes_observed_(0) {} 18 HandleWrapperTest() : closes_observed_(0) {}
18 19
19 void OnWillCloseHandle() override { closes_observed_++; } 20 void OnWillCloseHandle() override { closes_observed_++; }
20 21
21 protected: 22 protected:
22 int closes_observed_; 23 int closes_observed_;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 TEST_F(HandleWrapperTest, DestroyWithValidHandle) { 80 TEST_F(HandleWrapperTest, DestroyWithValidHandle) {
80 { 81 {
81 mojo::MessagePipe pipe; 82 mojo::MessagePipe pipe;
82 TestHandleWrapper wrapper(pipe.handle0.release().value()); 83 TestHandleWrapper wrapper(pipe.handle0.release().value());
83 wrapper.AddCloseObserver(this); 84 wrapper.AddCloseObserver(this);
84 ASSERT_EQ(0, closes_observed_); 85 ASSERT_EQ(0, closes_observed_);
85 } 86 }
86 EXPECT_EQ(1, closes_observed_); 87 EXPECT_EQ(1, closes_observed_);
87 } 88 }
88 89
90 } // namespace js
89 } // namespace edk 91 } // namespace edk
90 } // namespace mojo 92 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/edk/js/handle_close_observer.h ('k') | mojo/edk/js/mojo_runner_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698