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

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

Issue 63203002: Docserver: Make the hand-written Cron methods run first rather than last, since (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jeffrey Created 7 years, 1 month 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
« no previous file with comments | « chrome/common/extensions/docs/server2/strings_data_source.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/server2/template_data_source.py
diff --git a/chrome/common/extensions/docs/server2/template_data_source.py b/chrome/common/extensions/docs/server2/template_data_source.py
index 934569410eff521bcf33a16ccc63c974622a263d..1a26803732936ccf167bbe93ab8083d5af919472 100644
--- a/chrome/common/extensions/docs/server2/template_data_source.py
+++ b/chrome/common/extensions/docs/server2/template_data_source.py
@@ -9,6 +9,7 @@ import traceback
from data_source import DataSource
from docs_server_utils import FormatKey
from file_system import FileNotFoundError
+from future import Future
from svn_constants import PRIVATE_TEMPLATE_PATH
@@ -32,4 +33,4 @@ class TemplateDataSource(DataSource):
def Cron(self):
# TODO(kalman): Implement this; probably by finding all files that can be
# compiled to templates underneath |self._partial_dir| and compiling them.
- pass
+ return Future(value=())
« no previous file with comments | « chrome/common/extensions/docs/server2/strings_data_source.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698