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

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

Issue 2700693002: [MD Bookmarks] Expose chrome.bookmarks.import/export to MD Bookmarks (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This features file defines extension APIs implemented under src/chrome. 5 // This features file defines extension APIs implemented under src/chrome.
6 // See chrome/common/extensions/api/_features.md to understand this file, as 6 // See chrome/common/extensions/api/_features.md to understand this file, as
7 // well as feature.h, simple_feature.h, and feature_provider.h. 7 // well as feature.h, simple_feature.h, and feature_provider.h.
8 // 8 //
9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc.
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 "dependencies": ["permission:bookmarks"], 126 "dependencies": ["permission:bookmarks"],
127 "contexts": ["blessed_extension"], 127 "contexts": ["blessed_extension"],
128 "default_parent": true 128 "default_parent": true
129 }, { 129 }, {
130 "channel": "stable", 130 "channel": "stable",
131 "contexts": ["webui"], 131 "contexts": ["webui"],
132 "matches": [ 132 "matches": [
133 "chrome://bookmarks/*" 133 "chrome://bookmarks/*"
134 ] 134 ]
135 }], 135 }],
136 "bookmarks.export": { 136 "bookmarks.export": [{
137 "whitelist": [ 137 "whitelist": [
138 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 138 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900
139 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 139 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444
140 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 140 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562
141 ] 141 ]
142 }, 142 }, {
143 "bookmarks.import": { 143 "channel": "stable",
144 "contexts": ["webui"],
145 "dependencies": [],
146 "matches": [
147 "chrome://bookmarks/*"
148 ]
149 }],
150 "bookmarks.import": [{
144 "whitelist": [ 151 "whitelist": [
145 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900 152 "D5736E4B5CF695CB93A2FB57E4FDC6E5AFAB6FE2", // http://crbug.com/312900
146 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444 153 "D57DE394F36DC1C3220E7604C575D29C51A6C495", // http://crbug.com/319444
147 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562 154 "3F65507A3B39259B38C8173C6FFA3D12DF64CCE9" // http://crbug.com/371562
148 ] 155 ]
149 }, 156 }, {
157 "channel": "stable",
158 "contexts": ["webui"],
159 "dependencies": [],
160 "matches": [
161 "chrome://bookmarks/*"
162 ]
163 }],
150 "brailleDisplayPrivate": { 164 "brailleDisplayPrivate": {
151 "dependencies": ["permission:brailleDisplayPrivate"], 165 "dependencies": ["permission:brailleDisplayPrivate"],
152 "contexts": ["blessed_extension"] 166 "contexts": ["blessed_extension"]
153 }, 167 },
154 "browser": { 168 "browser": {
155 "dependencies": ["permission:browser"], 169 "dependencies": ["permission:browser"],
156 "contexts": ["blessed_extension"] 170 "contexts": ["blessed_extension"]
157 }, 171 },
158 "browserAction": { 172 "browserAction": {
159 "dependencies": ["manifest:browser_action"], 173 "dependencies": ["manifest:browser_action"],
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 "internal": true, 844 "internal": true,
831 "channel": "stable", 845 "channel": "stable",
832 "dependencies": ["permission:webview"], 846 "dependencies": ["permission:webview"],
833 "contexts": ["blessed_extension"] 847 "contexts": ["blessed_extension"]
834 }, 848 },
835 "windows": { 849 "windows": {
836 "dependencies": ["api:tabs"], 850 "dependencies": ["api:tabs"],
837 "contexts": ["blessed_extension"] 851 "contexts": ["blessed_extension"]
838 } 852 }
839 } 853 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698