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

Unified Diff: gin/per_isolate_data.h

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: gin/per_isolate_data.h
diff --git a/gin/per_isolate_data.h b/gin/per_isolate_data.h
index bffe5fb2c6f6e6c4a420171c6a5d8b74b676429e..9b26644f9b7d4d4196b90ce4a57d4874ff112c8a 100644
--- a/gin/per_isolate_data.h
+++ b/gin/per_isolate_data.h
@@ -14,7 +14,7 @@
#include "v8/include/v8.h"
namespace base {
-class MessageLoopProxy;
+class SingleThreadTaskRunner;
}
namespace gin {
@@ -65,7 +65,7 @@ class GIN_EXPORT PerIsolateData {
v8::Isolate* isolate() { return isolate_; }
v8::ArrayBuffer::Allocator* allocator() { return allocator_; }
- base::MessageLoopProxy* message_loop_proxy() {
+ base::SingleThreadTaskRunner* message_loop_proxy() {
viettrungluu 2016/01/28 21:32:46 Do you want to rename the getter (and the member v
return message_loop_proxy_.get();
}
@@ -87,7 +87,7 @@ class GIN_EXPORT PerIsolateData {
FunctionTemplateMap function_templates_;
IndexedPropertyInterceptorMap indexed_interceptors_;
NamedPropertyInterceptorMap named_interceptors_;
- scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
+ scoped_refptr<base::SingleThreadTaskRunner> message_loop_proxy_;
DISALLOW_COPY_AND_ASSIGN(PerIsolateData);
};

Powered by Google App Engine
This is Rietveld 408576698