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

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

Issue 1435063002: Eliminate third_party/mojo/src from all targets' include paths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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.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"
9 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "third_party/mojo/src/mojo/public/cpp/system/core.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 namespace edk { 12 namespace edk {
13 13
14 class HandleWrapperTest : public testing::Test, 14 class HandleWrapperTest : public testing::Test,
15 public HandleCloseObserver { 15 public HandleCloseObserver {
16 public: 16 public:
17 HandleWrapperTest() : closes_observed_(0) {} 17 HandleWrapperTest() : closes_observed_(0) {}
18 18
19 void OnWillCloseHandle() override { closes_observed_++; } 19 void OnWillCloseHandle() override { closes_observed_++; }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 edk 89 } // namespace edk
90 } // namespace mojo 90 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/edk/js/handle.h ('k') | mojo/edk/js/mojo_runner_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698