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

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

Issue 15087006: Docserver: there is only one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better redirects Created 7 years, 7 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/patched_file_system.py
diff --git a/chrome/common/extensions/docs/server2/patched_file_system.py b/chrome/common/extensions/docs/server2/patched_file_system.py
index f236d9fdeee0e5edd0e4b22e8e92ad02f2f69172..fa36ecee60611c1446520e9a80fe515bb6f720b7 100644
--- a/chrome/common/extensions/docs/server2/patched_file_system.py
+++ b/chrome/common/extensions/docs/server2/patched_file_system.py
@@ -155,3 +155,8 @@ class PatchedFileSystem(FileSystem):
else:
raise FileNotFoundError('%s was not in child versions' % filename)
return stat_info
+
+ def GetIdentity(self):
+ return '%s(%s,%s)' % (self.__class__.__name__,
+ self._host_file_system.GetIdentity(),
+ self._patcher.GetIdentity())

Powered by Google App Engine
This is Rietveld 408576698