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

Unified Diff: chrome/common/extensions/docs/server2/extensions_paths.py

Issue 176973009: Doc server: support interfaces in src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename path constants, update APIModels.GetModel 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/server2/extensions_paths.py
diff --git a/chrome/common/extensions/docs/server2/extensions_paths.py b/chrome/common/extensions/docs/server2/extensions_paths.py
index c6969d5240453ccb24452fe61c779372a2c6b888..682f1c07d408954e69f27a29d0f11580107b8684 100644
--- a/chrome/common/extensions/docs/server2/extensions_paths.py
+++ b/chrome/common/extensions/docs/server2/extensions_paths.py
@@ -7,14 +7,17 @@ from posixpath import join
# Extensions-related paths within the Chromium repository.
-EXTENSIONS = 'chrome/common/extensions/'
+EXTENSIONS = 'extensions/common/'
+CHROME_EXTENSIONS = 'chrome/common/extensions/'
API = join(EXTENSIONS, 'api/')
-DOCS = join(EXTENSIONS, 'docs/')
+CHROME_API = join(CHROME_EXTENSIONS, 'api/')
-API_FEATURES = join(API, '_api_features.json')
-MANIFEST_FEATURES = join(API, '_manifest_features.json')
-PERMISSION_FEATURES = join(API, '_permission_features.json')
+DOCS = join(CHROME_EXTENSIONS, 'docs/')
+
+API_FEATURES = join(CHROME_API, '_api_features.json')
+MANIFEST_FEATURES = join(CHROME_API, '_manifest_features.json')
+PERMISSION_FEATURES = join(CHROME_API, '_permission_features.json')
EXAMPLES = join(DOCS, 'examples/')
SERVER2 = join(DOCS, 'server2/')

Powered by Google App Engine
This is Rietveld 408576698