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

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

Issue 453713002: Docserver: Generate a table of extension/app API owners (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mlg rebasing Created 6 years, 4 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 3849dc34a672076ae6754819ee8a98d6ba6c7170..d6d044d2f352ee8380f7c647ee6592b03b8e4406 100644
--- a/chrome/common/extensions/docs/server2/extensions_paths.py
+++ b/chrome/common/extensions/docs/server2/extensions_paths.py
@@ -10,15 +10,26 @@ from posixpath import join
EXTENSIONS = 'extensions/common/'
CHROME_EXTENSIONS = 'chrome/common/extensions/'
+BROWSER_EXTENSIONS = 'extensions/browser/'
+BROWSER_CHROME_EXTENSIONS = 'chrome/browser/extensions/'
+
EXTENSIONS_API = join(EXTENSIONS, 'api/')
CHROME_API = join(CHROME_EXTENSIONS, 'api/')
+BROWSER_EXTENSIONS_API = join(BROWSER_EXTENSIONS, 'api/')
+BROWSER_CHROME_API = join(BROWSER_CHROME_EXTENSIONS, 'api/')
+
# Note: This determines search order when APIs are resolved in the filesystem.
API_PATHS = (
CHROME_API,
EXTENSIONS_API,
)
+BROWSER_API_PATHS = (
+ BROWSER_CHROME_API,
+ BROWSER_EXTENSIONS_API
+)
+
DOCS = join(CHROME_EXTENSIONS, 'docs/')
EXAMPLES = join(DOCS, 'examples/')
« no previous file with comments | « chrome/common/extensions/docs/server2/data_source_registry.py ('k') | chrome/common/extensions/docs/server2/file_system.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698