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

Unified Diff: chrome/common/extensions/docs/experimental.alarms.html

Issue 10217018: Alarm resolution changed to minutes and minimum delay added. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed type checks for optional string. Created 8 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
Index: chrome/common/extensions/docs/experimental.alarms.html
diff --git a/chrome/common/extensions/docs/experimental.alarms.html b/chrome/common/extensions/docs/experimental.alarms.html
index 05586824558fec3cfeafe26e9855fb208c31c05b..b020cd1c63a3113409bdd5e75c1f5f8d28931aaa 100644
--- a/chrome/common/extensions/docs/experimental.alarms.html
+++ b/chrome/common/extensions/docs/experimental.alarms.html
@@ -741,21 +741,21 @@
<div>
<div>
<dt>
- <var>delayInSeconds</var>
+ <var>delayInMinutes</var>
<em>
<!-- TYPE -->
<div style="display:inline">
(
<span id="typeTemplate">
<span>
- <span>integer</span>
+ <span>number</span>
</span>
</span>
)
</div>
</em>
</dt>
- <dd>Original length of time in seconds after which the onAlarm event should fire. TODO: need minimum=0</dd>
+ <dd>Original length of time in minutes after which the onAlarm event should fire. TODO: need minimum=0</dd>
<!-- OBJECT PROPERTIES -->
<!-- OBJECT METHODS -->
<!-- OBJECT EVENT FIELDS -->
@@ -841,21 +841,21 @@
<div>
<div>
<dt>
- <var>delayInSeconds</var>
+ <var>delayInMinutes</var>
<em>
<!-- TYPE -->
<div style="display:inline">
(
<span id="typeTemplate">
<span>
- <span>integer</span>
+ <span>number</span>
</span>
</span>
)
</div>
</em>
</dt>
- <dd>Length of time in seconds after which the onAlarm event should fire. Note that granularity is not guaranteed: this value is more of a hint to the browser. For performance reasons, alarms may be delayed an arbitrary amount of time before firing. TODO: need minimum=0</dd>
+ <dd>Length of time in minutes after which the onAlarm event should fire. Note that granularity is not guaranteed: this value is more of a hint to the browser. For performance reasons, alarms may be delayed an arbitrary amount of time before firing. TODO: need minimum=0</dd>
Yoyo Zhou 2012/05/05 00:48:59 Probably you can remove this TODO.
<!-- OBJECT PROPERTIES -->
<!-- OBJECT METHODS -->
<!-- OBJECT EVENT FIELDS -->

Powered by Google App Engine
This is Rietveld 408576698