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

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

Issue 176973009: Doc server: support interfaces in src/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename path constants, update APIModels.GetModel Created 6 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/compiled_file_system.py
diff --git a/chrome/common/extensions/docs/server2/compiled_file_system.py b/chrome/common/extensions/docs/server2/compiled_file_system.py
index fc4b1fd9dcf6bde116f45a7f6b91b3f951869047..e80882a5aad57725e746baf3aa155f33e94d4df3 100644
--- a/chrome/common/extensions/docs/server2/compiled_file_system.py
+++ b/chrome/common/extensions/docs/server2/compiled_file_system.py
@@ -259,3 +259,6 @@ class CompiledFileSystem(object):
if cache_entry is not None:
return cache_entry.version
return self._file_system.Stat(path).version
+
+ def FileExists(self, path):
not at google - send to devlin 2014/03/07 01:04:52 see elsewhere-comment about not needing this funct
Ken Rockot(use gerrit already) 2014/03/07 07:07:09 Done.
+ return self._file_system.Exists(path)

Powered by Google App Engine
This is Rietveld 408576698