diff options
author | kathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-22 18:34:57 +0000 |
---|---|---|
committer | kathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-22 18:34:57 +0000 |
commit | 204e18e9f7fabcbe467c7dcf015fac2ed0567e66 (patch) | |
tree | 83e09af4a946fdddab11f8eb1473238534aec411 | |
parent | 1949c9dcbf3de9e5566563b5af4a2e6d7e27ad96 (diff) | |
download | chromium_src-204e18e9f7fabcbe467c7dcf015fac2ed0567e66.zip chromium_src-204e18e9f7fabcbe467c7dcf015fac2ed0567e66.tar.gz chromium_src-204e18e9f7fabcbe467c7dcf015fac2ed0567e66.tar.bz2 |
ARGB -> RGBA (in the docs)
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/307040
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29791 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | chrome/common/extensions/api/extension_api.json | 6 | ||||
-rw-r--r-- | chrome/common/extensions/docs/browserAction.html | 2 | ||||
-rw-r--r-- | chrome/common/extensions/docs/pageAction.html | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 161fde1..e629088 100755 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -906,7 +906,7 @@ "tabId": {"type": "integer", "minimum": 0, "description": "The id of the tab for which you want to modify the page action."}, "color": { "type": "array", - "description": "An array of four integers in the range [0,255] that make up the ARGB color for the text of the badge.", + "description": "An array of four integers in the range [0,255] that make up the RGBA color for the text of the badge.", "items": { "type": "integer", "minimum": 0, @@ -931,7 +931,7 @@ "tabId": {"type": "integer", "minimum": 0, "description": "The id of the tab for which you want to modify the page action."}, "color": { "type": "array", - "description": "An array of four integers in the range [0,255] that make up the ARGB color of the badge. For example, opaque red is [255, 255, 0, 0].", + "description": "An array of four integers in the range [0,255] that make up the RGBA color of the badge. For example, opaque red is <code>[255, 0, 0, 255]</code>.", "items": { "type": "integer", "minimum": 0, @@ -1037,7 +1037,7 @@ "properties": { "color": { "type": "array", - "description": "An array of four integers in the range [0,255] that make up the ARGB color of the badge. For example, opaque red is <code>[255, 255, 0, 0]</code>.", + "description": "An array of four integers in the range [0,255] that make up the RGBA color of the badge. For example, opaque red is <code>[255, 0, 0, 255]</code>.", "items": { "type": "integer", "minimum": 0, diff --git a/chrome/common/extensions/docs/browserAction.html b/chrome/common/extensions/docs/browserAction.html index 36f3074..afe35f6 100644 --- a/chrome/common/extensions/docs/browserAction.html +++ b/chrome/common/extensions/docs/browserAction.html @@ -523,7 +523,7 @@ using the <b>popup</b> field of <b>browser_action</b>. <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>An array of four integers in the range [0,255] that make up the ARGB color of the badge. For example, opaque red is <code>[255, 255, 0, 0]</code>.</dd> + <dd>An array of four integers in the range [0,255] that make up the RGBA color of the badge. For example, opaque red is <code>[255, 0, 0, 255]</code>.</dd> <!-- OBJECT PROPERTIES --> <dd style="display: none; "> diff --git a/chrome/common/extensions/docs/pageAction.html b/chrome/common/extensions/docs/pageAction.html index 0de4128..9f03942 100644 --- a/chrome/common/extensions/docs/pageAction.html +++ b/chrome/common/extensions/docs/pageAction.html @@ -596,7 +596,7 @@ follow these guidelines:</p> <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>An array of four integers in the range [0,255] that make up the ARGB color of the badge. For example, opaque red is [255, 255, 0, 0].</dd> + <dd>An array of four integers in the range [0,255] that make up the RGBA color of the badge. For example, opaque red is <code>[255, 0, 0, 255]</code>.</dd> <!-- OBJECT PROPERTIES --> <dd style="display: none; "> @@ -950,7 +950,7 @@ follow these guidelines:</p> <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>An array of four integers in the range [0,255] that make up the ARGB color for the text of the badge.</dd> + <dd>An array of four integers in the range [0,255] that make up the RGBA color for the text of the badge.</dd> <!-- OBJECT PROPERTIES --> <dd style="display: none; "> |