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

Unified Diff: chrome/common/extensions/docs/server2/test_servlet.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
Index: chrome/common/extensions/docs/server2/test_servlet.py
diff --git a/chrome/common/extensions/docs/server2/test_servlet.py b/chrome/common/extensions/docs/server2/test_servlet.py
index 81f12aa3ccc466cc922f07784308c4ad4917ed7e..b6c3bac29c728425c4e0a857f04469ebbc0dd8ec 100644
--- a/chrome/common/extensions/docs/server2/test_servlet.py
+++ b/chrome/common/extensions/docs/server2/test_servlet.py
@@ -12,10 +12,10 @@ class BrokenLinkTester(object):
'''
def __init__(self, server_instance, renderer):
self.link_error_detector = LinkErrorDetector(
- server_instance.host_file_system,
- renderer,
- svn_constants.PUBLIC_TEMPLATE_PATH,
- root_pages=('extensions/index.html', 'apps/about_apps.html'))
+ server_instance.host_file_system_provider.GetTrunk(),
+ renderer,
+ svn_constants.PUBLIC_TEMPLATE_PATH,
+ root_pages=('extensions/index.html', 'apps/about_apps.html'))
def TestBrokenLinks(self):
broken_links = self.link_error_detector.GetBrokenLinks()

Powered by Google App Engine
This is Rietveld 408576698