Chromium Code Reviews| Index: samples/android_sample/jni/context.h |
| =================================================================== |
| --- samples/android_sample/jni/context.h (revision 0) |
| +++ samples/android_sample/jni/context.h (revision 0) |
| @@ -0,0 +1,17 @@ |
| +#ifndef CONTEXT_H |
| +#define CONTEXT_H |
| + |
| +class Graphics; |
| +class InputHandler; |
| +class VMGlue; |
| +class Timer; |
| + |
| +struct Context { |
| + Graphics* mGraphics; |
| + VMGlue* mVmGlue; |
| + InputHandler* mInputHandler; |
| + //SoundService* mSoundService; |
|
vsm
2012/11/30 17:00:30
Delete or add a TODO to enable.
gram
2012/11/30 18:01:31
Done.
|
| + Timer* mTimer; |
| +}; |
| + |
| +#endif |