Chromium Code Reviews| Index: cc/compositor_support_state.h |
| diff --git a/cc/compositor_support_state.h b/cc/compositor_support_state.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ba3368c1d5cf74e8310a31d0c413fab53f26189f |
| --- /dev/null |
| +++ b/cc/compositor_support_state.h |
| @@ -0,0 +1,21 @@ |
| +// Copyright 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CC_COMPOSITOR_SUPPORT_STATE_H_ |
| +#define CC_COMPOSITOR_SUPPORT_STATE_H_ |
| + |
| +namespace cc { |
| + |
| +class CCThread; |
| + |
| +struct CompositorSupportState { |
|
jamesr
2012/10/22 22:00:36
Not sure you really need this struct - most users
|
| + CCThread* mainThread; |
| + CCThread* implThread; |
| + |
| + CompositorSupportState(); |
| +}; |
| + |
| +} |
| + |
| +#endif |