| 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 "gin/public/v8_platform.h" | 5 #include "gin/public/v8_platform.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/message_loop/message_loop_proxy.h" |
| 10 #include "base/threading/worker_pool.h" | 10 #include "base/threading/worker_pool.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 FROM_HERE, | 32 FROM_HERE, |
| 33 base::Bind(&v8::Task::Run, base::Owned(task)), | 33 base::Bind(&v8::Task::Run, base::Owned(task)), |
| 34 expected_runtime == v8::Platform::kLongRunningTask); | 34 expected_runtime == v8::Platform::kLongRunningTask); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void V8Platform::CallOnForegroundThread(v8::Isolate* isolate, v8::Task* task) { | 37 void V8Platform::CallOnForegroundThread(v8::Isolate* isolate, v8::Task* task) { |
| 38 PerIsolateData::From(isolate)->task_runner()->PostTask( | 38 PerIsolateData::From(isolate)->task_runner()->PostTask( |
| 39 FROM_HERE, base::Bind(&v8::Task::Run, base::Owned(task))); | 39 FROM_HERE, base::Bind(&v8::Task::Run, base::Owned(task))); |
| 40 } | 40 } |
| 41 | 41 |
| 42 void V8Platform::CallDelayedOnForegroundThread(v8::Isolate* isolate, | |
| 43 v8::Task* task, | |
| 44 double delay_in_seconds) { | |
| 45 PerIsolateData::From(isolate)->task_runner()->PostDelayedTask( | |
| 46 FROM_HERE, base::Bind(&v8::Task::Run, base::Owned(task)), | |
| 47 base::TimeDelta::FromSecondsD(delay_in_seconds)); | |
| 48 } | |
| 49 | |
| 50 double V8Platform::MonotonicallyIncreasingTime() { | 42 double V8Platform::MonotonicallyIncreasingTime() { |
| 51 return base::TimeTicks::Now().ToInternalValue() / | 43 return base::TimeTicks::Now().ToInternalValue() / |
| 52 static_cast<double>(base::Time::kMicrosecondsPerSecond); | 44 static_cast<double>(base::Time::kMicrosecondsPerSecond); |
| 53 } | 45 } |
| 54 | 46 |
| 55 } // namespace gin | 47 } // namespace gin |
| OLD | NEW |