| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "mojo/public/cpp/environment/environment.h" | |
| 6 | |
| 7 #include "mojo/environment/default_async_waiter_impl.h" | |
| 8 #include "mojo/environment/default_logger_impl.h" | |
| 9 #include "mojo/environment/default_run_loop_impl.h" | |
| 10 #include "mojo/environment/default_task_tracker_impl.h" | |
| 11 | |
| 12 namespace mojo { | |
| 13 | |
| 14 // These methods are intentionally not implemented so that there is a link | |
| 15 // error if someone uses them in a Chromium-environment. | |
| 16 #if 0 | |
| 17 Environment::Environment() { | |
| 18 } | |
| 19 | |
| 20 Environment::Environment(const MojoAsyncWaiter* default_async_waiter, | |
| 21 const MojoLogger* default_logger) { | |
| 22 } | |
| 23 | |
| 24 Environment::~Environment() { | |
| 25 } | |
| 26 #endif | |
| 27 | |
| 28 // static | |
| 29 const MojoAsyncWaiter* Environment::GetDefaultAsyncWaiter() { | |
| 30 return internal::GetDefaultAsyncWaiterImpl(); | |
| 31 } | |
| 32 | |
| 33 // static | |
| 34 const MojoLogger* Environment::GetDefaultLogger() { | |
| 35 return internal::GetDefaultLoggerImpl(); | |
| 36 } | |
| 37 | |
| 38 // static | |
| 39 const TaskTracker* Environment::GetDefaultTaskTracker() { | |
| 40 return internal::GetDefaultTaskTracker(); | |
| 41 } | |
| 42 | |
| 43 // static | |
| 44 void Environment::InstantiateDefaultRunLoop() { | |
| 45 internal::InstantiateDefaultRunLoopImpl(); | |
| 46 } | |
| 47 | |
| 48 // static | |
| 49 void Environment::DestroyDefaultRunLoop() { | |
| 50 internal::DestroyDefaultRunLoopImpl(); | |
| 51 } | |
| 52 | |
| 53 | |
| 54 | |
| 55 } // namespace mojo | |
| OLD | NEW |