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

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

Issue 14267024: Devserver: have a separate ObjectStore namespace (both memcache and datastore) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove _CheckVersions Created 7 years, 8 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/samples_data_source.py
diff --git a/chrome/common/extensions/docs/server2/samples_data_source.py b/chrome/common/extensions/docs/server2/samples_data_source.py
index 897d9bd95db556b738e5c6c7fe34d6db4ad5f9cf..da2d898868063fd18bc36d8eec22856aa7f78d3a 100644
--- a/chrome/common/extensions/docs/server2/samples_data_source.py
+++ b/chrome/common/extensions/docs/server2/samples_data_source.py
@@ -15,9 +15,6 @@ import url_constants
DEFAULT_ICON_PATH = '/images/sample-default-icon.png'
-# Increment this if the data model changes for SamplesDataSource.
-_VERSION = 4
-
class SamplesDataSource(object):
"""Constructs a list of samples and their respective files and api calls.
"""
@@ -42,8 +39,7 @@ class SamplesDataSource(object):
fs,
object_store_creator_factory).Create(fn,
SamplesDataSource,
- category=category,
- version=_VERSION)
+ category=category)
self._extensions_cache = create_compiled_fs(extensions_file_system,
self._MakeSamplesList,
'extensions')

Powered by Google App Engine
This is Rietveld 408576698