| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "bindings/core/v8/ScriptWrappable.h" | 5 #include "bindings/core/v8/ScriptWrappable.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/DOMDataStore.h" | 7 #include "bindings/core/v8/DOMDataStore.h" |
| 8 #include "bindings/core/v8/ScriptWrappableVisitor.h" | 8 #include "bindings/core/v8/ScriptWrappableVisitor.h" |
| 9 #include "bindings/core/v8/V8DOMWrapper.h" | 9 #include "bindings/core/v8/V8DOMWrapper.h" |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 wrapperTypeInfo->installConditionallyEnabledProperties(wrapper, isolate); | 30 wrapperTypeInfo->installConditionallyEnabledProperties(wrapper, isolate); |
| 31 return associateWithWrapper(isolate, wrapperTypeInfo, wrapper); | 31 return associateWithWrapper(isolate, wrapperTypeInfo, wrapper); |
| 32 } | 32 } |
| 33 | 33 |
| 34 v8::Local<v8::Object> ScriptWrappable::associateWithWrapper(v8::Isolate* isolate
, const WrapperTypeInfo* wrapperTypeInfo, v8::Local<v8::Object> wrapper) | 34 v8::Local<v8::Object> ScriptWrappable::associateWithWrapper(v8::Isolate* isolate
, const WrapperTypeInfo* wrapperTypeInfo, v8::Local<v8::Object> wrapper) |
| 35 { | 35 { |
| 36 return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperTypeIn
fo, wrapper); | 36 return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperTypeIn
fo, wrapper); |
| 37 } | 37 } |
| 38 | 38 |
| 39 void ScriptWrappable::markWrapper(v8::Isolate* isolate) const | 39 void ScriptWrappable::markWrapper(const WrapperVisitor* visitor) const |
| 40 { | 40 { |
| 41 if (containsWrapper()) | 41 if (containsWrapper()) |
| 42 ScriptWrappableVisitor::markWrapper(&m_mainWorldWrapper, isolate); | 42 visitor->markWrapper(&m_mainWorldWrapper); |
| 43 } | 43 } |
| 44 | 44 |
| 45 } // namespace blink | 45 } // namespace blink |
| OLD | NEW |