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

Unified Diff: chrome/common/extensions/docs/server2/offline_file_system.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/offline_file_system.py
diff --git a/chrome/common/extensions/docs/server2/offline_file_system.py b/chrome/common/extensions/docs/server2/offline_file_system.py
index 281ef5dd3fc8bea9f01c8f1d195a0e88ca06b699..a48cda036e06cc764d218cafad4671c9e7a98de6 100644
--- a/chrome/common/extensions/docs/server2/offline_file_system.py
+++ b/chrome/common/extensions/docs/server2/offline_file_system.py
@@ -17,12 +17,7 @@ class OfflineFileSystem(FileSystem):
def Stat(self, path):
raise FileNotFoundError('File system is offline, cannot read %s' % path)
- # HACK: despite GetName/GetVersion being @classmethods, these need to be
- # instance methods so that we can grab the name and version from the class
- # given on construction.
-
+ # HACK: despite GetName being a @classmethod, these need to be instance
+ # methods so that we can grab the name from the class given on construction.
def GetName(self):
return self._cls.GetName()
-
- def GetVersion(self):
- return self._cls.GetVersion()

Powered by Google App Engine
This is Rietveld 408576698