| Index: gpu/command_buffer/tests/gl_manager.h
|
| diff --git a/gpu/command_buffer/tests/gl_manager.h b/gpu/command_buffer/tests/gl_manager.h
|
| index 2ebe69539f9d2c268ac7ceddc4e09082f0168594..15fc9ef4885279ea170e02c4ddaae3ebfe04cd39 100644
|
| --- a/gpu/command_buffer/tests/gl_manager.h
|
| +++ b/gpu/command_buffer/tests/gl_manager.h
|
| @@ -30,6 +30,8 @@ class MailboxManager;
|
| class GLES2Decoder;
|
| class GLES2CmdHelper;
|
| class GLES2Implementation;
|
| +class ImageFactory;
|
| +class ImageManager;
|
| class ShareGroup;
|
|
|
| };
|
| @@ -50,6 +52,10 @@ class GLManager {
|
| bool bind_generates_resource;
|
| // Whether or not it's ok to lose the context.
|
| bool context_lost_allowed;
|
| + // Image manager to be used.
|
| + gles2::ImageManager* image_manager;
|
| + // Image factory to be used.
|
| + gles2::ImageFactory* image_factory;
|
| };
|
| GLManager();
|
| ~GLManager();
|
|
|