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..762775579327c5ac57623bde9a593e05dec9c221 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/') |
not at google - send to devlin
2014/03/27 23:49:40
heh, maybe this should be EXTENSIONS_API ...
Ken Rockot(use gerrit already)
2014/03/28 01:05:57
Done.
|
+APPS_API = join(APPS, 'api/') |
CHROME_API = join(CHROME_EXTENSIONS, 'api/') |
+# Note: This determines search order when APIs are resolved in the filesystem. |
+API_PATHS = ( |
+ CHROME_API, |
+ API, |
+ APPS_API, |
+) |
+ |
DOCS = join(CHROME_EXTENSIONS, 'docs/') |
API_FEATURES = join(CHROME_API, '_api_features.json') |