| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "bindings/modules/v8/V8WebGL2RenderingContext.h" | |
| 6 | |
| 7 #include "modules/webgl/WebGL2RenderingContextBase.h" | |
| 8 | |
| 9 using namespace WTF; | |
| 10 | |
| 11 namespace blink { | |
| 12 | |
| 13 void V8WebGL2RenderingContext::visitDOMWrapperCustom( | |
| 14 v8::Isolate* isolate, | |
| 15 ScriptWrappable* scriptWrappable, | |
| 16 const v8::Persistent<v8::Object>& wrapper) { | |
| 17 WebGL2RenderingContext* impl = | |
| 18 scriptWrappable->toImpl<WebGL2RenderingContext>(); | |
| 19 impl->visitChildDOMWrappers(isolate, wrapper); | |
| 20 } | |
| 21 | |
| 22 } // namespace blink | |
| OLD | NEW |