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

Side by Side Diff: mojo/system/entrypoints.h

Issue 231353002: Make mojo_system static and mojo_system_impl a component, never use both (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Get content builds to work Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698