Index: chrome/common/extensions/api/content_settings.json |
diff --git a/chrome/common/extensions/api/content_settings.json b/chrome/common/extensions/api/content_settings.json |
index 5d21a7030eb98e8ce1e3d3f7e40d1f5bc9cca198..2b77b8156991b623910553637ffb370c85ad5466 100644 |
--- a/chrome/common/extensions/api/content_settings.json |
+++ b/chrome/common/extensions/api/content_settings.json |
@@ -197,6 +197,14 @@ |
{"type":"string", "enum": ["allow", "block"]} |
] |
}, |
+ "location": { |
+ "$ref": "ContentSetting", |
+ "description": "Whether to allow Geolocation. One of <br><var>allow</var>: Allow sites to track your physical location,<br><var>block</var>: Don't allow sites to track your physical location,<br><var>block</var>: Ask before allowing sites to track your physical location. <br>Default is <var>ask</var>.<br>The primary URL is the main-frame URL. The secondary URL is not used.", |
msramek
2015/01/12 11:37:40
"<br><var>block</var>: Ask before"
s/block/ask/
Mike West
2015/01/13 06:53:35
Thanks! Fixed the typo.
|
+ "value": [ |
+ "location", |
+ {"type":"string", "enum": ["allow", "block", "ask"]} |
+ ] |
+ }, |
"plugins": { |
"$ref": "ContentSetting", |
"description": "Whether to run plug-ins. One of<br><var>allow</var>: Run plug-ins automatically,<br><var>block</var>: Don't run plug-ins automatically. <br>Default is <var>allow</var>.<br>The primary URL is the main-frame URL. The secondary URL is not used.", |