OLD | NEW |
| (Empty) |
1 // Copyright 2013 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_UTILITY_ENVIRONMENT_H_ | |
6 #define MOJO_PUBLIC_UTILITY_ENVIRONMENT_H_ | |
7 | |
8 #include "mojo/public/system/macros.h" | |
9 | |
10 namespace mojo { | |
11 | |
12 namespace internal { | |
13 class BindingsSupportImpl; | |
14 } // namespace internal | |
15 | |
16 class RunLoop; | |
17 | |
18 // Use Environment to cofigure state. | |
19 class Environment { | |
20 public: | |
21 Environment(); | |
22 ~Environment(); | |
23 | |
24 private: | |
25 internal::BindingsSupportImpl* bindings_support_; | |
26 | |
27 MOJO_DISALLOW_COPY_AND_ASSIGN(Environment); | |
28 }; | |
29 | |
30 } // namespace mojo | |
31 | |
32 #endif // MOJO_PUBLIC_UTILITY_ENVIRONMENT_H_ | |
OLD | NEW |