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 12 matching lines...) Expand all Loading... |
23 class Environment { | 23 class Environment { |
24 public: | 24 public: |
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 |
33 static const MojoLogger* GetDefaultLogger(); | 34 static const MojoLogger* GetDefaultLogger(); |
| 35 static void SetDefaultLogger(const MojoLogger* logger); |
34 | 36 |
35 // These instantiate and destroy an environment-specific run loop for the | 37 // These instantiate and destroy an environment-specific run loop for the |
36 // current thread, allowing |GetDefaultAsyncWaiter()| to be used. (The run | 38 // current thread, allowing |GetDefaultAsyncWaiter()| to be used. (The run |
37 // loop itself should be accessible via thread-local storage, using methods | 39 // loop itself should be accessible via thread-local storage, using methods |
38 // specific to the run loop implementation.) Creating and destroying nested | 40 // specific to the run loop implementation.) Creating and destroying nested |
39 // run loops is not supported. | 41 // run loops is not supported. |
40 static void InstantiateDefaultRunLoop(); | 42 static void InstantiateDefaultRunLoop(); |
41 static void DestroyDefaultRunLoop(); | 43 static void DestroyDefaultRunLoop(); |
42 | 44 |
43 private: | 45 private: |
44 MOJO_DISALLOW_COPY_AND_ASSIGN(Environment); | 46 MOJO_DISALLOW_COPY_AND_ASSIGN(Environment); |
45 }; | 47 }; |
46 | 48 |
47 } // namespace mojo | 49 } // namespace mojo |
48 | 50 |
49 #endif // MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ | 51 #endif // MOJO_PUBLIC_CPP_ENVIRONMENT_ENVIRONMENT_H_ |
OLD | NEW |