summaryrefslogtreecommitdiffstats
path: root/content/browser/appcache
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-18 03:04:09 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-18 03:04:09 +0000
commit10eb2816fd7d28974114910aa5bfc105366a187f (patch)
tree7584d8faaa940e6ce8bb08320004ff402160b60e /content/browser/appcache
parentf37a6bc327a34487e61beab79c3ec06390a42320 (diff)
downloadchromium_src-10eb2816fd7d28974114910aa5bfc105366a187f.zip
chromium_src-10eb2816fd7d28974114910aa5bfc105366a187f.tar.gz
chromium_src-10eb2816fd7d28974114910aa5bfc105366a187f.tar.bz2
continuing from http://http://codereview.chromium.org/10823241
This intentionally doesn't change the ChromeOS behavior at all. They all still use the default FileSystemContext. This code also exposes the normal and media URLRequestGetters via the StoragePartition, and cleans up a bit of code that was accessing the URLRequestGetter in odd ways. Also, it makes Workers correctly use the Media Cache for Media fetches. TBR=benjhyden,sky,davemoore,piman,mkwst,kalman BUG=85121 Review URL: https://chromiumcodereview.appspot.com/10909182 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157284 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/appcache')
-rw-r--r--content/browser/appcache/chrome_appcache_service.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/appcache/chrome_appcache_service.cc b/content/browser/appcache/chrome_appcache_service.cc
index 9508b80..cde0484 100644
--- a/content/browser/appcache/chrome_appcache_service.cc
+++ b/content/browser/appcache/chrome_appcache_service.cc
@@ -32,7 +32,8 @@ void ChromeAppCacheService::InitializeOnIOThread(
resource_context_ = resource_context;
// The |request_context_getter| can be NULL in some unit tests.
- // TODO(awong): TestProfile is difficult to work with. The
+ //
+ // TODO(ajwong): TestProfile is difficult to work with. The
// SafeBrowsing tests require that GetRequestContext return NULL
// so we can't depend on having a non-NULL value here. See crbug/149783.
if (request_context_getter)