Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: third_party/WebKit/Source/bindings/modules/v8/custom/V8WebGL2RenderingContextCustom.cpp

Issue 2671553003: Remove uses of VisitDOMWrapper (Closed)
Patch Set: Add DependentLifetime when removing Custom=VisitDOMWrapper Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698