| 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/V8DOMWrapper.h" | 8 #include "bindings/core/v8/V8DOMWrapper.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 wrapperTypeInfo->installConditionallyEnabledProperties(wrapper, isolate); | 56 wrapperTypeInfo->installConditionallyEnabledProperties(wrapper, isolate); |
| 57 return associateWithWrapper(isolate, wrapperTypeInfo, wrapper); | 57 return associateWithWrapper(isolate, wrapperTypeInfo, wrapper); |
| 58 } | 58 } |
| 59 | 59 |
| 60 v8::Local<v8::Object> ScriptWrappable::associateWithWrapper(v8::Isolate* isolate
, const WrapperTypeInfo* wrapperTypeInfo, v8::Local<v8::Object> wrapper) | 60 v8::Local<v8::Object> ScriptWrappable::associateWithWrapper(v8::Isolate* isolate
, const WrapperTypeInfo* wrapperTypeInfo, v8::Local<v8::Object> wrapper) |
| 61 { | 61 { |
| 62 return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperTypeIn
fo, wrapper); | 62 return V8DOMWrapper::associateObjectWithWrapper(isolate, this, wrapperTypeIn
fo, wrapper); |
| 63 } | 63 } |
| 64 | 64 |
| 65 bool ScriptWrappable::hasPendingActivity() const |
| 66 { |
| 67 return false; |
| 68 } |
| 69 |
| 65 } // namespace blink | 70 } // namespace blink |
| OLD | NEW |