| 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/ScriptState.h" | 5 #include "bindings/core/v8/ScriptState.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/V8Binding.h" | 7 #include "bindings/core/v8/V8Binding.h" |
| 8 #include "core/dom/ExecutionContext.h" |
| 8 | 9 |
| 9 namespace blink { | 10 namespace blink { |
| 10 | 11 |
| 11 PassRefPtr<ScriptState> ScriptState::Create(v8::Local<v8::Context> context, | 12 PassRefPtr<ScriptState> ScriptState::Create(v8::Local<v8::Context> context, |
| 12 PassRefPtr<DOMWrapperWorld> world) { | 13 PassRefPtr<DOMWrapperWorld> world) { |
| 13 RefPtr<ScriptState> script_state = | 14 RefPtr<ScriptState> script_state = |
| 14 AdoptRef(new ScriptState(context, std::move(world))); | 15 AdoptRef(new ScriptState(context, std::move(world))); |
| 15 // This ref() is for keeping this ScriptState alive as long as the v8::Context | 16 // This ref() is for keeping this ScriptState alive as long as the v8::Context |
| 16 // is alive. This is deref()ed in the weak callback of the v8::Context. | 17 // is alive. This is deref()ed in the weak callback of the v8::Context. |
| 17 script_state->Ref(); | 18 script_state->Ref(); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 47 void ScriptState::DetachGlobalObject() { | 48 void ScriptState::DetachGlobalObject() { |
| 48 DCHECK(!context_.IsEmpty()); | 49 DCHECK(!context_.IsEmpty()); |
| 49 GetContext()->DetachGlobal(); | 50 GetContext()->DetachGlobal(); |
| 50 } | 51 } |
| 51 | 52 |
| 52 void ScriptState::DisposePerContextData() { | 53 void ScriptState::DisposePerContextData() { |
| 53 per_context_data_ = nullptr; | 54 per_context_data_ = nullptr; |
| 54 } | 55 } |
| 55 | 56 |
| 56 } // namespace blink | 57 } // namespace blink |
| OLD | NEW |