Index: chrome/common/extensions/docs/server2/file_system.py |
diff --git a/chrome/common/extensions/docs/server2/file_system.py b/chrome/common/extensions/docs/server2/file_system.py |
index 0450a063271327a7ddacae833267cc56e4363581..ab2248f504b41d5acd52d9b0878e51cd6563966c 100644 |
--- a/chrome/common/extensions/docs/server2/file_system.py |
+++ b/chrome/common/extensions/docs/server2/file_system.py |
@@ -66,9 +66,11 @@ class FileSystem(object): |
''' |
raise NotImplementedError() |
- @classmethod |
- def GetName(cls): |
- '''The type of the file system, exposed for caching classes to namespace |
- their caches. It is unlikely that this needs to be overridden. |
+ def GetIdentity(self): |
+ '''The identity of the file system, exposed for caching classes to |
+ namespace their caches. this will usually depend on the configuration of |
+ that file system - e.g. a LocalFileSystem with a base path of /var is |
+ different to that of a SubversionFileSystem with a base path of /bar, is |
+ different to a LocalFileSystem with a base path of /usr. |
''' |
- return cls.__name__ |
+ raise NotImplementedError() |