Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: gin/v8_platform.cc

Issue 1186173005: Revert of Implement V8Platform::CallDelayedOnForegroundThread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gin/public/v8_platform.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « gin/public/v8_platform.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698