Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SKY_VIEWER_RUNTIME_FLAGS_H_ | |
| 6 #define SKY_VIEWER_RUNTIME_FLAGS_H_ | |
| 7 | |
| 8 namespace mojo { | |
| 9 class ApplicationImpl; | |
| 10 } | |
| 11 | |
| 12 namespace sky { | |
| 13 | |
| 14 struct RuntimeFlags { | |
|
eseidel1
2015/01/20 02:04:03
No struct ever stays a struct. I'd just make this
abarth-chromium
2015/01/20 02:47:38
Fixed.
| |
| 15 bool testing; | |
|
eseidel1
2015/01/20 02:04:03
Seems a bit strange, but OK.
| |
| 16 | |
| 17 static void Initialize(mojo::ApplicationImpl* app); | |
| 18 static const RuntimeFlags& Get(); | |
| 19 }; | |
| 20 | |
| 21 } // namespace sky | |
| 22 | |
| 23 #endif // SKY_VIEWER_RUNTIME_FLAGS_H_ | |
| OLD | NEW |