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 682f1c07d408954e69f27a29d0f11580107b8684..3bb6342bbf9ed5265417325dccee2ee7f36f6353 100644 |
--- a/chrome/common/extensions/docs/server2/extensions_paths.py |
+++ b/chrome/common/extensions/docs/server2/extensions_paths.py |
@@ -7,12 +7,21 @@ from posixpath import join |
# Extensions-related paths within the Chromium repository. |
+APPS = 'apps/common/' |
EXTENSIONS = 'extensions/common/' |
CHROME_EXTENSIONS = 'chrome/common/extensions/' |
-API = join(EXTENSIONS, 'api/') |
+APPS_API = join(APPS, 'api/') |
+EXTENSIONS_API = join(EXTENSIONS, 'api/') |
CHROME_API = join(CHROME_EXTENSIONS, 'api/') |
+# Note: This determines search order when APIs are resolved in the filesystem. |
+API_PATHS = ( |
+ CHROME_API, |
+ EXTENSIONS_API, |
+ APPS_API, |
+) |
+ |
DOCS = join(CHROME_EXTENSIONS, 'docs/') |
API_FEATURES = join(CHROME_API, '_api_features.json') |