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 "modules/csspaint/CSSPaintDefinition.h" |
| 6 |
| 7 #include "bindings/core/v8/ScriptState.h" |
| 8 |
| 9 namespace blink { |
| 10 |
| 11 namespace { |
| 12 |
| 13 static void clearHandle(const v8::WeakCallbackInfo<ScopedPersistent<v8::Function
>>& data) |
| 14 { |
| 15 data.GetParameter()->clear(); |
| 16 } |
| 17 |
| 18 } // namespace |
| 19 |
| 20 PassRefPtrWillBeRawPtr<CSSPaintDefinition> CSSPaintDefinition::create(ScriptStat
e* scriptState, v8::Local<v8::Function> constructor, v8::Local<v8::Function> pai
nt) |
| 21 { |
| 22 return adoptRefWillBeNoop(new CSSPaintDefinition(scriptState, constructor, p
aint)); |
| 23 } |
| 24 |
| 25 CSSPaintDefinition::CSSPaintDefinition(ScriptState* scriptState, v8::Local<v8::F
unction> constructor, v8::Local<v8::Function> paint) |
| 26 : m_scriptState(scriptState) |
| 27 , m_constructor(scriptState->isolate(), constructor) |
| 28 , m_paint(scriptState->isolate(), paint) |
| 29 { |
| 30 m_constructor.setWeak(&m_constructor, clearHandle); |
| 31 m_paint.setWeak(&m_paint, clearHandle); |
| 32 } |
| 33 |
| 34 CSSPaintDefinition::~CSSPaintDefinition() |
| 35 { |
| 36 } |
| 37 |
| 38 } // namespace blink |
OLD | NEW |