OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
viettrungluu
2014/04/10 19:38:06
Missing include guards (even if this file could be
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 namespace mojo { | |
6 namespace system { | |
7 class Core; | |
viettrungluu
2014/04/10 19:38:06
nit: add a blank line above?
| |
8 | |
9 namespace entrypoints { | |
10 | |
11 // Sets the instance of Core to be used by system functions. | |
12 void SetCore(Core* core); | |
13 // Gets the instance of Core to be used by system functions. | |
14 Core* GetCore(); | |
15 | |
16 } // namespace entrypoints | |
17 } // namepace system | |
18 } // namespace mojo | |
19 | |
viettrungluu
2014/04/10 19:38:06
I have a totally irrational pet peeve against extr
| |
OLD | NEW |