| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mojo/apps/js/bindings/gl/module.h" | 5 #include "mojo/apps/js/bindings/gl/module.h" |
| 6 | 6 |
| 7 #include <GLES2/gl2.h> | 7 #include <GLES2/gl2.h> |
| 8 #include <GLES2/gl2ext.h> | 8 #include <GLES2/gl2ext.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 gin::WrapperInfo kWrapperInfo = { gin::kEmbedderNativeGin }; | 25 gin::WrapperInfo kWrapperInfo = { gin::kEmbedderNativeGin }; |
| 26 | 26 |
| 27 gin::Handle<Context> CreateContext(const gin::Arguments& args, uint64_t encoded, | 27 gin::Handle<Context> CreateContext(const gin::Arguments& args, uint64_t encoded, |
| 28 int width, int height) { | 28 int width, int height) { |
| 29 return Context::Create(args.isolate(), encoded, width, height); | 29 return Context::Create(args.isolate(), encoded, width, height); |
| 30 } | 30 } |
| 31 | 31 |
| 32 } // namespace | 32 } // namespace |
| 33 | 33 |
| 34 v8::Local<v8::ObjectTemplate> GetModuleTemplate(v8::Isolate* isolate) { | 34 v8::Local<v8::Value> GetModule(v8::Isolate* isolate) { |
| 35 gin::PerIsolateData* data = gin::PerIsolateData::From(isolate); | 35 gin::PerIsolateData* data = gin::PerIsolateData::From(isolate); |
| 36 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(&kWrapperInfo); | 36 v8::Local<v8::ObjectTemplate> templ = data->GetObjectTemplate(&kWrapperInfo); |
| 37 | 37 |
| 38 if (templ.IsEmpty()) { | 38 if (templ.IsEmpty()) { |
| 39 templ = gin::ObjectTemplateBuilder(isolate) | 39 templ = gin::ObjectTemplateBuilder(isolate) |
| 40 .SetMethod("Context", CreateContext) | 40 .SetMethod("Context", CreateContext) |
| 41 .Build(); | 41 .Build(); |
| 42 data->SetObjectTemplate(&kWrapperInfo, templ); | 42 data->SetObjectTemplate(&kWrapperInfo, templ); |
| 43 } | 43 } |
| 44 | 44 |
| 45 return templ; | 45 return templ->NewInstance(); |
| 46 } | 46 } |
| 47 | 47 |
| 48 } // namespace gl | 48 } // namespace gl |
| 49 } // namespace js | 49 } // namespace js |
| 50 } // namespace mojo | 50 } // namespace mojo |
| OLD | NEW |