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

Side by Side Diff: blimp/helium/helium_test.h

Issue 2402153002: Add CompoundSyncable class for synchronizing containers of Syncables. (Closed)
Patch Set: make literal unsigned Created 4 years, 2 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 | « blimp/helium/errors.h ('k') | blimp/helium/lww_register.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 2016 The Chromium Authors. All rights reserved. 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 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 #ifndef BLIMP_HELIUM_HELIUM_TEST_H_ 5 #ifndef BLIMP_HELIUM_HELIUM_TEST_H_
6 #define BLIMP_HELIUM_HELIUM_TEST_H_ 6 #define BLIMP_HELIUM_HELIUM_TEST_H_
7 7
8 #include "base/at_exit.h" 8 #include "base/at_exit.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 11
12 namespace blimp { 12 namespace blimp {
13 namespace helium { 13 namespace helium {
14 namespace test {
15 14
16 class HeliumTest : public ::testing::Test { 15 class HeliumTest : public ::testing::Test {
17 public: 16 public:
18 HeliumTest() {} 17 HeliumTest() {}
19 ~HeliumTest() override {} 18 ~HeliumTest() override {}
20 19
21 private: 20 private:
22 base::ShadowingAtExitManager at_exit_manager_; 21 base::ShadowingAtExitManager at_exit_manager_;
23 22
24 DISALLOW_COPY_AND_ASSIGN(HeliumTest); 23 DISALLOW_COPY_AND_ASSIGN(HeliumTest);
25 }; 24 };
26 25
27 } // namespace test
28 } // namespace helium 26 } // namespace helium
29 } // namespace blimp 27 } // namespace blimp
30 28
31 #endif // BLIMP_HELIUM_HELIUM_TEST_H_ 29 #endif // BLIMP_HELIUM_HELIUM_TEST_H_
OLDNEW
« no previous file with comments | « blimp/helium/errors.h ('k') | blimp/helium/lww_register.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698