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

Unified Diff: chrome/common/extensions/api/extension_api.json

Issue 5020002: Missed a small change in my last CL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/extension_api.json
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index 23d705513af2539e353cd005ce69cf13f4b80ebc..426c0875034dea8a5152b9e9ae1aad2476bbbd65 100644
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -3963,7 +3963,7 @@
"type": "function",
"description": "Constructor for the descriptionStyles parameter of the suggest callback. This style designates a region of text matching a URL or filename. A negative offset means the region will start at that many characters from the end of the description. If length is omitted, the region will apply for the rest of the description text.",
"parameters": [
- {"type": "integer", "name": "offset", "minimum": 0},
+ {"type": "integer", "name": "offset"},
{"type": "integer", "name": "length", "minimum": 0, "optional": true}
]
},
@@ -3972,7 +3972,7 @@
"type": "function",
"description": "Constructor for the descriptionStyles parameter of the suggest callback. This style designates a region of text matching what the user typed. A negative offset means the region will start at that many characters from the end of the description. If length is omitted, the region will apply for the rest of the description text.",
"parameters": [
- {"type": "integer", "name": "offset", "minimum": 0},
+ {"type": "integer", "name": "offset"},
{"type": "integer", "name": "length", "minimum": 0, "optional": true}
]
},
@@ -3981,7 +3981,7 @@
"type": "function",
"description": "Constructor for the descriptionStyles parameter of the suggest callback. This style designates a region of dim helper text. A negative offset means the region will start at that many characters from the end of the description. If length is omitted, the region will apply for the rest of the description text.",
"parameters": [
- {"type": "integer", "name": "offset", "minimum": 0},
+ {"type": "integer", "name": "offset"},
{"type": "integer", "name": "length", "minimum": 0, "optional": true}
]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698