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/') |