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

Side by Side Diff: chrome/common/extensions/api/extension_api.json

Issue 7529011: Add a flag that lets the webstore show a different UI on app install. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed files added in separate CL (r95432) Created 9 years, 4 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 6541 matching lines...) Expand 10 before | Expand all | Expand 10 after
6552 }, 6552 },
6553 "localizedName": { 6553 "localizedName": {
6554 "type": "string", 6554 "type": "string",
6555 "optional": true, 6555 "optional": true,
6556 "description": "A string to use instead of the raw value of the 'name' key from manifest.json." 6556 "description": "A string to use instead of the raw value of the 'name' key from manifest.json."
6557 }, 6557 },
6558 "locale": { 6558 "locale": {
6559 "type": "string", 6559 "type": "string",
6560 "optional": true, 6560 "optional": true,
6561 "description": "The name of the locale used for generating local izedName. This should be the name of one of the directories in the _locales fold er of the extension, or the default_locale setting from the manifest." 6561 "description": "The name of the locale used for generating local izedName. This should be the name of one of the directories in the _locales fold er of the extension, or the default_locale setting from the manifest."
6562 },
6563 "appInstallBubble": {
6564 "type": "boolean",
6565 "optional": true,
6566 "description": "A flag to change the UI we show when an app is i nstalled - a value of true means to show a bubble pointing at the new tab button (instead of the default behavior of opening the new tab page and animating the app icon)."
6562 } 6567 }
6563 } 6568 }
6564 }, 6569 },
6565 { 6570 {
6566 "name": "callback", 6571 "name": "callback",
6567 "type": "function", 6572 "type": "function",
6568 "description": "Called when the user has either accepted/rejected th e dialog, or some error occurred (such as invalid manifest or icon image data)." , 6573 "description": "Called when the user has either accepted/rejected th e dialog, or some error occurred (such as invalid manifest or icon image data)." ,
6569 "optional": "true", 6574 "optional": "true",
6570 "parameters": [ 6575 "parameters": [
6571 { 6576 {
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
7387 "description": "A string result code. The value is non-empty on success only in tests.", 7392 "description": "A string result code. The value is non-empty on success only in tests.",
7388 "optional": "true" 7393 "optional": "true"
7389 } 7394 }
7390 ] 7395 ]
7391 } 7396 }
7392 ] 7397 ]
7393 } 7398 }
7394 ] 7399 ]
7395 } 7400 }
7396 ] 7401 ]
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/test/data/extensions/api_test/webstore_private/app_install_bubble.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698