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