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

Unified Diff: gin/modules/timer.h

Issue 1118643002: Replace v8::Handle with v8::Local in gin/modules/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « gin/modules/module_runner_delegate.cc ('k') | gin/modules/timer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/modules/timer.h
diff --git a/gin/modules/timer.h b/gin/modules/timer.h
index 4913477e1dc0f3f80cfb092a5fe4d36007604288..c4f809168eb74f1ffb8ac0308c1213ffc1b53646 100644
--- a/gin/modules/timer.h
+++ b/gin/modules/timer.h
@@ -27,13 +27,13 @@ class GIN_EXPORT Timer : public Wrappable<Timer> {
static WrapperInfo kWrapperInfo;
static Handle<Timer> Create(TimerType type, v8::Isolate* isolate,
- int delay_ms, v8::Handle<v8::Function> function);
+ int delay_ms, v8::Local<v8::Function> function);
ObjectTemplateBuilder GetObjectTemplateBuilder(v8::Isolate* isolate) override;
private:
Timer(v8::Isolate* isolate, bool repeating, int delay_ms,
- v8::Handle<v8::Function> function);
+ v8::Local<v8::Function> function);
~Timer() override;
void OnTimerFired();
« no previous file with comments | « gin/modules/module_runner_delegate.cc ('k') | gin/modules/timer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698