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

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

Issue 1426843004: Remove the task tracking stuff in the bindings. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « mojo/environment/default_task_tracker.cc ('k') | mojo/public/cpp/environment/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "mojo/public/cpp/environment/environment.h" 5 #include "mojo/public/cpp/environment/environment.h"
6 6
7 #include "base/message_loop/message_loop.h" 7 #include "base/message_loop/message_loop.h"
8 #include "mojo/environment/default_async_waiter.h" 8 #include "mojo/environment/default_async_waiter.h"
9 #include "mojo/environment/default_logger.h" 9 #include "mojo/environment/default_logger.h"
10 #include "mojo/environment/default_task_tracker.h"
11 10
12 namespace mojo { 11 namespace mojo {
13 12
14 // These methods are intentionally not implemented so that there is a link 13 // These methods are intentionally not implemented so that there is a link
15 // error if someone uses them in a Chromium-environment. 14 // error if someone uses them in a Chromium-environment.
16 #if 0 15 #if 0
17 Environment::Environment() { 16 Environment::Environment() {
18 } 17 }
19 18
20 Environment::Environment(const MojoAsyncWaiter* default_async_waiter, 19 Environment::Environment(const MojoAsyncWaiter* default_async_waiter,
21 const MojoLogger* default_logger) { 20 const MojoLogger* default_logger) {
22 } 21 }
23 22
24 Environment::~Environment() { 23 Environment::~Environment() {
25 } 24 }
26 #endif 25 #endif
27 26
28 // static 27 // static
29 const MojoAsyncWaiter* Environment::GetDefaultAsyncWaiter() { 28 const MojoAsyncWaiter* Environment::GetDefaultAsyncWaiter() {
30 return &internal::kDefaultAsyncWaiter; 29 return &internal::kDefaultAsyncWaiter;
31 } 30 }
32 31
33 // static 32 // static
34 const MojoLogger* Environment::GetDefaultLogger() { 33 const MojoLogger* Environment::GetDefaultLogger() {
35 return &internal::kDefaultLogger; 34 return &internal::kDefaultLogger;
36 } 35 }
37 36
38 // static 37 // static
39 const TaskTracker* Environment::GetDefaultTaskTracker() {
40 return &internal::kDefaultTaskTracker;
41 }
42
43 // static
44 void Environment::InstantiateDefaultRunLoop() { 38 void Environment::InstantiateDefaultRunLoop() {
45 CHECK(!base::MessageLoop::current()); 39 CHECK(!base::MessageLoop::current());
46 // Not leaked: accessible from |base::MessageLoop::current()|. 40 // Not leaked: accessible from |base::MessageLoop::current()|.
47 base::MessageLoop* message_loop = new base::MessageLoop(); 41 base::MessageLoop* message_loop = new base::MessageLoop();
48 CHECK_EQ(message_loop, base::MessageLoop::current()); 42 CHECK_EQ(message_loop, base::MessageLoop::current());
49 } 43 }
50 44
51 // static 45 // static
52 void Environment::DestroyDefaultRunLoop() { 46 void Environment::DestroyDefaultRunLoop() {
53 CHECK(base::MessageLoop::current()); 47 CHECK(base::MessageLoop::current());
54 delete base::MessageLoop::current(); 48 delete base::MessageLoop::current();
55 CHECK(!base::MessageLoop::current()); 49 CHECK(!base::MessageLoop::current());
56 } 50 }
57 51
58 } // namespace mojo 52 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/environment/default_task_tracker.cc ('k') | mojo/public/cpp/environment/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698