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

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

Issue 15087006: Docserver: there is only one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better redirects Created 7 years, 7 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/branch_utility.py
diff --git a/chrome/common/extensions/docs/server2/branch_utility.py b/chrome/common/extensions/docs/server2/branch_utility.py
index 0dd43d102637f061a065074980889ebebb71a404..66f30437ebc7893d0c239146e932bf4a9bbc13f7 100644
--- a/chrome/common/extensions/docs/server2/branch_utility.py
+++ b/chrome/common/extensions/docs/server2/branch_utility.py
@@ -13,9 +13,7 @@ class BranchUtility(object):
def __init__(self, fetch_url, fetcher, object_store_creator):
self._fetch_url = fetch_url
self._fetcher = fetcher
- # BranchUtility is obviously cross-channel, so set the channel to None.
- self._object_store = object_store_creator.Create(BranchUtility,
- channel=None)
+ self._object_store = object_store_creator.Create(BranchUtility)
@staticmethod
def Create(object_store_creator):

Powered by Google App Engine
This is Rietveld 408576698