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

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

Issue 26418002: Docserver: Pull knowledge of host file systems into a single (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct similarity Created 7 years, 2 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
« no previous file with comments | « chrome/common/extensions/docs/server2/test_servlet.py ('k') | tools/json_schema_compiler/memoize.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/server2/test_servlet_test.py
diff --git a/chrome/common/extensions/docs/server2/test_servlet_test.py b/chrome/common/extensions/docs/server2/test_servlet_test.py
index 0e53afbf9990bf76863aff0f1fd93f72a7a4ef2b..4fbeae6cf930c49913cb85feccdaa38e5a1f4d05 100755
--- a/chrome/common/extensions/docs/server2/test_servlet_test.py
+++ b/chrome/common/extensions/docs/server2/test_servlet_test.py
@@ -6,7 +6,7 @@
import unittest
from empty_dir_file_system import EmptyDirFileSystem
-from host_file_system_creator import HostFileSystemCreator
+from host_file_system_provider import HostFileSystemProvider
from servlet import Request
from test_branch_utility import TestBranchUtility
from fail_on_access_file_system import FailOnAccessFileSystem
@@ -19,8 +19,8 @@ class _TestDelegate(object):
def CreateAppSamplesFileSystem(self, object_store_creator):
return EmptyDirFileSystem()
- def CreateHostFileSystemCreator(self, object_store_creator):
- return HostFileSystemCreator.ForTest(
+ def CreateHostFileSystemProvider(self, object_store_creator):
+ return HostFileSystemProvider.ForTest(
FailOnAccessFileSystem(), object_store_creator)
# This test can't really be useful. The set of valid tests is changing and
« no previous file with comments | « chrome/common/extensions/docs/server2/test_servlet.py ('k') | tools/json_schema_compiler/memoize.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698