Bug 1367494 - Warn on properties supported on desktop but not android instead of preventing installation r?aswan draft
authorMatthew Wein <mwein@mozilla.com>
Wed, 14 Jun 2017 13:40:37 -0400
changeset 594285 e2b8cc4a0915dbb64452a2e899b6780c460ece08
parent 594149 da66c4a05fda49d457d9411a7092fed87cf9e53a
child 633376 2007cf674f94d02c738f2115e1c26c8da2adb719
push id63977
push usermwein@mozilla.com
push dateWed, 14 Jun 2017 20:04:23 +0000
reviewersaswan
bugs1367494
milestone56.0a1
Bug 1367494 - Warn on properties supported on desktop but not android instead of preventing installation r?aswan MozReview-Commit-ID: EjGJgssAjpr
mobile/android/components/extensions/schemas/browser_action.json
--- a/mobile/android/components/extensions/schemas/browser_action.json
+++ b/mobile/android/components/extensions/schemas/browser_action.json
@@ -15,36 +15,36 @@
             "properties": {
               "default_title": {
                 "type": "string",
                 "optional": true,
                 "preprocess": "localize"
               },
               "default_icon": {
                 "$ref": "IconPath",
-                "unsupported": true,
+                "deprecated": "Unsupported on Android.",
                 "optional": true
               },
               "default_popup": {
                 "type": "string",
                 "format": "relativeUrl",
-                "unsupported": true,
+                "deprecated": "Unsupported on Android.",
                 "optional": true,
                 "preprocess": "localize"
               },
               "browser_style": {
                 "type": "boolean",
-                "unsupported": true,
+                "deprecated": "Unsupported on Android.",
                 "optional": true
               },
               "default_area": {
                 "description": "Defines the location the browserAction will appear by default.  The default location is navbar.",
                 "type": "string",
                 "enum": ["navbar", "menupanel", "tabstrip", "personaltoolbar"],
-                "unsupported": true,
+                "deprecated": "Unsupported on Android.",
                 "optional": true
               }
             },
             "optional": true
           }
         }
       }
     ]