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

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

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First round of changes Created 7 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/object_store.py
diff --git a/chrome/common/extensions/docs/server2/object_store.py b/chrome/common/extensions/docs/server2/object_store.py
index 6d1f9cde1c4324da10d4078437793c28f29bf205..b1f47b287157b947f25c8a208c203d3b8bae785d 100644
--- a/chrome/common/extensions/docs/server2/object_store.py
+++ b/chrome/common/extensions/docs/server2/object_store.py
@@ -5,14 +5,16 @@
from appengine_wrappers import CACHE_TIMEOUT
from future import Future
-BRANCH_UTILITY = 'BranchUtility'
-FILE_SYSTEM_CACHE = 'CompiledFileSystem'
-FILE_SYSTEM_CACHE_LISTING = 'CompiledFileSystemListing'
-FILE_SYSTEM_READ = 'Read'
-FILE_SYSTEM_STAT = 'Stat'
-GITHUB_STAT = 'GithubStat'
-KNOWN_ISSUES = 'KnownIssues'
-REFERENCE_RESOLVER = 'ReferenceResolver'
+BRANCH_UTILITY = 'BranchUtility'
+FILE_SYSTEM_CACHE = 'CompiledFileSystem'
+FILE_SYSTEM_CACHE_LISTING = 'CompiledFileSystemListing'
+FILE_SYSTEM_READ = 'Read'
+FILE_SYSTEM_STAT = 'Stat'
+GITHUB_STAT = 'GithubStat'
+KNOWN_ISSUES = 'KnownIssues'
+REFERENCE_RESOLVER = 'ReferenceResolver'
+CHROME_VERSION_DATA_SOURCE = 'ChromeVersionDataSource'
+AVAILABILITY_DATA_SOURCE = 'AvailabilityDataSource'
class _SingleGetFuture(object):
def __init__(self, multi_get, key):

Powered by Google App Engine
This is Rietveld 408576698