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

Side by Side Diff: mojo/public/cpp/environment/environment.h

Issue 694923002: Update mojo sdk to rev 91d94d6993c9b0c4135a95687a7d541ce90629b (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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 #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
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_
OLDNEW
« no previous file with comments | « mojo/public/cpp/application/lib/application_test_main.cc ('k') | mojo/public/cpp/environment/lib/environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698