| Index: mojo/apps/js/bindings/gl/context.h
|
| diff --git a/mojo/apps/js/bindings/gl/context.h b/mojo/apps/js/bindings/gl/context.h
|
| index 11f1753312e12ec69356f6ce3e4cc427d51aac61..a5a3ca10dc0d5338b49ff0d91356ba335631177f 100644
|
| --- a/mojo/apps/js/bindings/gl/context.h
|
| +++ b/mojo/apps/js/bindings/gl/context.h
|
| @@ -28,8 +28,6 @@ class Context : public gin::Wrappable<Context> {
|
| public:
|
| static gin::WrapperInfo kWrapperInfo;
|
|
|
| - static v8::Local<v8::ObjectTemplate> GetObjectTemplate(v8::Isolate* isolate);
|
| -
|
| static gin::Handle<Context> Create(v8::Isolate* isolate, uint64_t encoded,
|
| int width, int height);
|
| static gin::Handle<Shader> CreateShader(const gin::Arguments& arguments,
|
| @@ -40,6 +38,9 @@ class Context : public gin::Wrappable<Context> {
|
| gin::Handle<Shader> shader);
|
|
|
| private:
|
| + virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
| + v8::Isolate* isolate) OVERRIDE;
|
| +
|
| Context(uint64_t encoded, int width, int height);
|
|
|
| uint64_t encoded_;
|
|
|