Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 BLIMP_NET_HELIUM_SYNCABLE_COMMON_H_ | |
| 6 #define BLIMP_NET_HELIUM_SYNCABLE_COMMON_H_ | |
| 7 | |
| 8 namespace blimp { | |
| 9 | |
| 10 enum class Bias { ClientWins, EngineWins }; | |
|
Kevin M
2016/10/17 22:19:45
Recommend renaming these to Client, Engine. If thi
steimel
2016/10/18 23:53:20
Done.
| |
| 11 enum class RunningAs { Client, Engine }; | |
| 12 | |
| 13 } // namespace blimp | |
| 14 | |
| 15 #endif // BLIMP_NET_HELIUM_SYNCABLE_COMMON_H_ | |
| OLD | NEW |