Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/system/embedder.h" | 5 #include "mojo/public/environment/environment.h" |
| 6 | |
| 7 #include "mojo/system/core_impl.h" | |
| 8 | 6 |
| 9 namespace mojo { | 7 namespace mojo { |
| 10 namespace embedder { | |
| 11 | 8 |
| 12 void Init() { | 9 Environment::Environment() { |
| 13 Core::Init(new system::CoreImpl()); | 10 // no-op |
|
viettrungluu
2014/01/13 21:47:44
It might be helpful to have an explanation about w
| |
| 14 } | 11 } |
| 15 | 12 |
| 16 } // namespace embedder | 13 Environment::~Environment() { |
| 14 // no-op | |
| 15 } | |
| 16 | |
| 17 } // namespace mojo | 17 } // namespace mojo |
| OLD | NEW |