Commit 9b93de6f authored by mihaip@chromium.org's avatar mihaip@chromium.org

Fix typo in new background page syntax ("page" takes a string, not an array)

R=aa@chromium.org

Review URL: https://chromiumcodereview.appspot.com/9582009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124680 0039d316-1c4b-4281-b951-d872f2087c98
parent e35fbd61
...@@ -265,7 +265,7 @@ property instead: ...@@ -265,7 +265,7 @@ property instead:
"name": "My extension", "name": "My extension",
... ...
<b>"background": { <b>"background": {
"page": ["background.html"] "page": "background.html"
}</b>, }</b>,
... ...
}</pre> }</pre>
......
...@@ -65,7 +65,7 @@ property instead: ...@@ -65,7 +65,7 @@ property instead:
"name": "My extension", "name": "My extension",
... ...
<b>"background": { <b>"background": {
"page": ["background.html"] "page": "background.html"
}</b>, }</b>,
... ...
}</pre> }</pre>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment