| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "gin/per_isolate_data.h" | 5 #include "gin/per_isolate_data.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| 11 #include "base/threading/thread_task_runner_handle.h" | 11 #include "base/threading/thread_task_runner_handle.h" |
| 12 #include "gin/public/gin_embedders.h" | 12 #include "gin/public/gin_embedders.h" |
| 13 | 13 |
| 14 using v8::ArrayBuffer; | 14 using v8::ArrayBuffer; |
| 15 using v8::Eternal; | 15 using v8::Eternal; |
| 16 using v8::Isolate; | 16 using v8::Isolate; |
| 17 using v8::Local; | 17 using v8::Local; |
| 18 using v8::Object; | 18 using v8::Object; |
| 19 using v8::FunctionTemplate; | 19 using v8::FunctionTemplate; |
| 20 using v8::ObjectTemplate; | 20 using v8::ObjectTemplate; |
| 21 | 21 |
| 22 namespace gin { | 22 namespace gin { |
| 23 | 23 |
| 24 PerIsolateData::PerIsolateData(Isolate* isolate, | 24 PerIsolateData::PerIsolateData( |
| 25 ArrayBuffer::Allocator* allocator, | 25 Isolate* isolate, |
| 26 IsolateHolder::AccessMode access_mode) | 26 ArrayBuffer::Allocator* allocator, |
| 27 IsolateHolder::AccessMode access_mode, |
| 28 scoped_refptr<base::SingleThreadTaskRunner> task_runner) |
| 27 : isolate_(isolate), | 29 : isolate_(isolate), |
| 28 allocator_(allocator), | 30 allocator_(allocator), |
| 29 access_mode_(access_mode), | 31 access_mode_(access_mode), |
| 30 task_runner_(base::ThreadTaskRunnerHandle::Get()) { | 32 task_runner_(task_runner) { |
| 31 isolate_->SetData(kEmbedderNativeGin, this); | 33 isolate_->SetData(kEmbedderNativeGin, this); |
| 32 } | 34 } |
| 33 | 35 |
| 34 PerIsolateData::~PerIsolateData() { | 36 PerIsolateData::~PerIsolateData() { |
| 35 isolate_->SetData(kEmbedderNativeGin, NULL); | 37 isolate_->SetData(kEmbedderNativeGin, NULL); |
| 36 } | 38 } |
| 37 | 39 |
| 38 PerIsolateData* PerIsolateData::From(Isolate* isolate) { | 40 PerIsolateData* PerIsolateData::From(Isolate* isolate) { |
| 39 return static_cast<PerIsolateData*>(isolate->GetData(kEmbedderNativeGin)); | 41 return static_cast<PerIsolateData*>(isolate->GetData(kEmbedderNativeGin)); |
| 40 } | 42 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 else | 116 else |
| 115 return NULL; | 117 return NULL; |
| 116 } | 118 } |
| 117 | 119 |
| 118 void PerIsolateData::EnableIdleTasks( | 120 void PerIsolateData::EnableIdleTasks( |
| 119 std::unique_ptr<V8IdleTaskRunner> idle_task_runner) { | 121 std::unique_ptr<V8IdleTaskRunner> idle_task_runner) { |
| 120 idle_task_runner_ = std::move(idle_task_runner); | 122 idle_task_runner_ = std::move(idle_task_runner); |
| 121 } | 123 } |
| 122 | 124 |
| 123 } // namespace gin | 125 } // namespace gin |
| OLD | NEW |