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

Unified Diff: mojo/environment/environment.cc

Issue 134253004: Mojo: AsyncWaiter and mojo/public/environment (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: improve README.md Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: mojo/environment/environment.cc
diff --git a/mojo/system/embedder.cc b/mojo/environment/environment.cc
similarity index 55%
copy from mojo/system/embedder.cc
copy to mojo/environment/environment.cc
index b66fb2b61239e31efcdf850ebf0e2d0c2443eeda..dbd25281b4343742982b14f26d174a51f857f77f 100644
--- a/mojo/system/embedder.cc
+++ b/mojo/environment/environment.cc
@@ -2,16 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "mojo/system/embedder.h"
-
-#include "mojo/system/core_impl.h"
+#include "mojo/public/environment/environment.h"
namespace mojo {
-namespace embedder {
-void Init() {
- Core::Init(new system::CoreImpl());
+Environment::Environment() {
+ // no-op
viettrungluu 2014/01/13 21:47:44 It might be helpful to have an explanation about w
+}
+
+Environment::~Environment() {
+ // no-op
}
-} // namespace embedder
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698