mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
remove comments now that we have more descriptive names
This commit is contained in:
parent
89f1949913
commit
0cba3eec62
2 changed files with 4 additions and 4 deletions
|
@ -228,7 +228,7 @@ impl<'a> WindowMethods for JSRef<'a, Window> {
|
|||
self.timers.set_timeout_or_interval(callback,
|
||||
args,
|
||||
timeout,
|
||||
NonInterval, // is_interval
|
||||
NonInterval,
|
||||
FromWindow(self.page.id.clone()),
|
||||
self.script_chan.clone())
|
||||
}
|
||||
|
@ -241,7 +241,7 @@ impl<'a> WindowMethods for JSRef<'a, Window> {
|
|||
self.timers.set_timeout_or_interval(callback,
|
||||
args,
|
||||
timeout,
|
||||
Interval, // is_interval
|
||||
Interval,
|
||||
FromWindow(self.page.id.clone()),
|
||||
self.script_chan.clone())
|
||||
}
|
||||
|
|
|
@ -160,7 +160,7 @@ impl<'a> WorkerGlobalScopeMethods for JSRef<'a, WorkerGlobalScope> {
|
|||
self.timers.set_timeout_or_interval(callback,
|
||||
args,
|
||||
timeout,
|
||||
NonInterval, // is_interval
|
||||
NonInterval,
|
||||
FromWorker,
|
||||
self.script_chan.clone())
|
||||
}
|
||||
|
@ -173,7 +173,7 @@ impl<'a> WorkerGlobalScopeMethods for JSRef<'a, WorkerGlobalScope> {
|
|||
self.timers.set_timeout_or_interval(callback,
|
||||
args,
|
||||
timeout,
|
||||
Interval, // is_interval
|
||||
Interval,
|
||||
FromWorker,
|
||||
self.script_chan.clone())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue