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

Side by Side Diff: mojo/public/cpp/bindings/tests/wtf_test_base.h

Issue 1751563002: Mojo C++ bindings: support mapping mojo string to WTF::String. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_TESTS_WTF_TEST_BASE_H_
6 #define MOJO_PUBLIC_CPP_BINDINGS_TESTS_WTF_TEST_BASE_H_
7
8 #include "base/macros.h"
9 #include "testing/gtest/include/gtest/gtest.h"
10
11 namespace mojo {
12 namespace test {
13
14 class WTFTestBase : public testing::Test {
15 public:
16 ~WTFTestBase() override;
17
18 protected:
19 WTFTestBase();
20
21 // testing::Test overrides:
22 void SetUp() override;
23
24 DISALLOW_COPY_AND_ASSIGN(WTFTestBase);
25 };
26
27 } // namespace test
28 } // namespace mojo
29
30 #endif // MOJO_PUBLIC_CPP_BINDINGS_TESTS_WTF_TEST_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698