Chromium Code Reviews| 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 |