| Index: runtime/embedders/android/context.h
|
| diff --git a/runtime/embedders/android/context.h b/runtime/embedders/android/context.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..560828cee8d292e27c14fc858211a2e9ccd54860
|
| --- /dev/null
|
| +++ b/runtime/embedders/android/context.h
|
| @@ -0,0 +1,22 @@
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +#ifndef EMBEDDERS_ANDROID_CONTEXT_H_
|
| +#define EMBEDDERS_ANDROID_CONTEXT_H_
|
| +
|
| +class Graphics;
|
| +class InputHandler;
|
| +class SoundService;
|
| +class Timer;
|
| +class VMGlue;
|
| +
|
| +struct Context {
|
| + Graphics* graphics;
|
| + InputHandler* input_handler;
|
| + SoundService* sound_service;
|
| + Timer* timer;
|
| + VMGlue* vm_glue;
|
| +};
|
| +
|
| +#endif // EMBEDDERS_ANDROID_CONTEXT_H_
|
|
|