OLD | NEW |
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 #ifndef MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ | 5 #ifndef MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ |
6 #define MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ | 6 #define MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ |
7 | 7 |
8 #include "mojo/public/cpp/system/macros.h" | 8 #include "mojo/public/cpp/system/macros.h" |
9 | 9 |
10 struct MojoAsyncWaiter; | 10 struct MojoAsyncWaiter; |
(...skipping 14 matching lines...) Expand all Loading... |
25 Environment(); | 25 Environment(); |
26 // This constructor allows the standard implementations to be overridden (set | 26 // This constructor allows the standard implementations to be overridden (set |
27 // a parameter to null to get the standard implementation). | 27 // a parameter to null to get the standard implementation). |
28 Environment(const MojoAsyncWaiter* default_async_waiter, | 28 Environment(const MojoAsyncWaiter* default_async_waiter, |
29 const MojoLogger* default_logger); | 29 const MojoLogger* default_logger); |
30 ~Environment(); | 30 ~Environment(); |
31 | 31 |
32 static const MojoAsyncWaiter* GetDefaultAsyncWaiter(); | 32 static const MojoAsyncWaiter* GetDefaultAsyncWaiter(); |
33 static const MojoLogger* GetDefaultLogger(); | 33 static const MojoLogger* GetDefaultLogger(); |
34 | 34 |
| 35 // These instantiate and destroy an environment-specific run loop for the |
| 36 // current thread, allowing |GetDefaultAsyncWaiter()| to be used. (The run |
| 37 // loop itself should be accessible via thread-local storage, using methods |
| 38 // specific to the run loop implementation.) Creating and destroying nested |
| 39 // run loops is not supported. |
| 40 static void InstantiateDefaultRunLoop(); |
| 41 static void DestroyDefaultRunLoop(); |
| 42 |
35 private: | 43 private: |
36 MOJO_DISALLOW_COPY_AND_ASSIGN(Environment); | 44 MOJO_DISALLOW_COPY_AND_ASSIGN(Environment); |
37 }; | 45 }; |
38 | 46 |
39 } // namespace mojo | 47 } // namespace mojo |
40 | 48 |
41 #endif // MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ | 49 #endif // MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ |
OLD | NEW |