diff options
author | apavlov@chromium.org <apavlov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-03 13:51:58 +0000 |
---|---|---|
committer | apavlov@chromium.org <apavlov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-03 13:51:58 +0000 |
commit | f1f8639f531a3a919a13d8f8aa8008e8b88e3b1f (patch) | |
tree | 74fb091262f2850a55aa99bbedcdaa163f0c09d1 /webkit/appcache | |
parent | bd070e2f0795ef0661be6be7585a62c81fbf7459 (diff) | |
download | chromium_src-f1f8639f531a3a919a13d8f8aa8008e8b88e3b1f.zip chromium_src-f1f8639f531a3a919a13d8f8aa8008e8b88e3b1f.tar.gz chromium_src-f1f8639f531a3a919a13d8f8aa8008e8b88e3b1f.tar.bz2 |
Reapply 130248 - Add full support for filesystem URLs. Trying to get the build into the right state.
TBR=pfeldman
Review URL: https://chromiumcodereview.appspot.com/9956101
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130363 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache')
-rw-r--r-- | webkit/appcache/appcache_interfaces.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/webkit/appcache/appcache_interfaces.cc b/webkit/appcache/appcache_interfaces.cc index aac9766..70de5ff 100644 --- a/webkit/appcache/appcache_interfaces.cc +++ b/webkit/appcache/appcache_interfaces.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -63,11 +63,11 @@ bool IsSchemeSupported(const GURL& url) { bool supported = url.SchemeIs(kHttpScheme) || url.SchemeIs(kHttpsScheme); #ifndef NDEBUG // TODO(michaeln): It would be really nice if this could optionally work for - // file urls too to help web developers experiment and test their apps, - // perhaps enabled via a cmd line flag or some other developer tool setting. - // Unfortunately file scheme net::URLRequest don't produce the same signalling - // (200 response codes, headers) as http URLRequests, so this doesn't work - // just yet. + // file and filesystem urls too to help web developers experiment and test + // their apps, perhaps enabled via a cmd line flag or some other developer + // tool setting. Unfortunately file scheme net::URLRequests don't produce the + // same signalling (200 response codes, headers) as http URLRequests, so this + // doesn't work just yet. // supported |= url.SchemeIsFile(); #endif return supported; |