| 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..c6969d5240453ccb24452fe61c779372a2c6b888 100644
|
| --- a/chrome/common/extensions/docs/server2/extensions_paths.py
|
| +++ b/chrome/common/extensions/docs/server2/extensions_paths.py
|
| @@ -7,17 +7,14 @@ from posixpath import join
|
|
|
| # Extensions-related paths within the Chromium repository.
|
|
|
| -EXTENSIONS = 'extensions/common/'
|
| -CHROME_EXTENSIONS = 'chrome/common/extensions/'
|
| +EXTENSIONS = 'chrome/common/extensions/'
|
|
|
| API = join(EXTENSIONS, 'api/')
|
| -CHROME_API = join(CHROME_EXTENSIONS, 'api/')
|
| +DOCS = join(EXTENSIONS, 'docs/')
|
|
|
| -DOCS = join(CHROME_EXTENSIONS, 'docs/')
|
| -
|
| -API_FEATURES = join(CHROME_API, '_api_features.json')
|
| -MANIFEST_FEATURES = join(CHROME_API, '_manifest_features.json')
|
| -PERMISSION_FEATURES = join(CHROME_API, '_permission_features.json')
|
| +API_FEATURES = join(API, '_api_features.json')
|
| +MANIFEST_FEATURES = join(API, '_manifest_features.json')
|
| +PERMISSION_FEATURES = join(API, '_permission_features.json')
|
|
|
| EXAMPLES = join(DOCS, 'examples/')
|
| SERVER2 = join(DOCS, 'server2/')
|
|
|