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

Side by Side Diff: mojo/environment/environment.cc

Issue 1765243002: Remove Mojo bindings environment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
(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
OLDNEW
« no previous file with comments | « mojo/environment/default_task_tracker_impl.cc ('k') | mojo/environment/mojo_environment_impl_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698