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

Side by Side Diff: chrome/common/extensions/docs/server2/test_data/object_level_availability/tabs.py

Issue 176973009: Doc server: support interfaces in src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 6 years, 9 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 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import json 5 import json
6 6
7 from extensions_paths import EXTENSIONS 7 from extensions_paths import CHROME_EXTENSIONS
8 from test_file_system import MoveAllTo 8 from test_file_system import MoveAllTo
9 9
10 10
11 TABS_SCHEMA_BRANCHES = MoveAllTo(EXTENSIONS, { 11 TABS_SCHEMA_BRANCHES = MoveAllTo(CHROME_EXTENSIONS, {
12 'trunk': { 12 'trunk': {
13 'docs': { 13 'docs': {
14 'templates': { 14 'templates': {
15 'json': { 15 'json': {
16 'api_availabilities.json': '{}' 16 'api_availabilities.json': '{}'
17 } 17 }
18 } 18 }
19 }, 19 },
20 'api': { 20 'api': {
21 '_api_features.json': '{}', 21 '_api_features.json': '{}',
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1109 ] 1109 ]
1110 }]) 1110 }])
1111 } 1111 }
1112 }, 1112 },
1113 '782': { 1113 '782': {
1114 'api': { 1114 'api': {
1115 'extension_api.json': "{}" 1115 'extension_api.json': "{}"
1116 } 1116 }
1117 } 1117 }
1118 }) 1118 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698