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

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

Issue 214843006: Docserver: Support //apps APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: version bump and trailing newlines? 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 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')
« apps/common/api/dummy.idl ('K') | « chrome/common/extensions/docs/server2/cron.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698