Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2012 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 CC_COMPOSITOR_SUPPORT_STATE_H_ | |
| 6 #define CC_COMPOSITOR_SUPPORT_STATE_H_ | |
| 7 | |
| 8 namespace cc { | |
| 9 | |
| 10 class CCThread; | |
| 11 | |
| 12 struct CompositorSupportState { | |
|
jamesr
2012/10/22 22:00:36
Not sure you really need this struct - most users
| |
| 13 CCThread* mainThread; | |
| 14 CCThread* implThread; | |
| 15 | |
| 16 CompositorSupportState(); | |
| 17 }; | |
| 18 | |
| 19 } | |
| 20 | |
| 21 #endif | |
| OLD | NEW |