| Index: content/browser/appcache/appcache_update_job.cc
|
| diff --git a/content/browser/appcache/appcache_update_job.cc b/content/browser/appcache/appcache_update_job.cc
|
| index 4b212861222e0f15a560f871888c4f64860f7ed2..881e23b4f4b63cfd5dd219855c0e7605ac3e83c5 100644
|
| --- a/content/browser/appcache/appcache_update_job.cc
|
| +++ b/content/browser/appcache/appcache_update_job.cc
|
| @@ -10,6 +10,7 @@
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "base/thread_task_runner_handle.h"
|
| +#include "chrome/common/origin_util.h"
|
| #include "content/browser/appcache/appcache_group.h"
|
| #include "content/browser/appcache/appcache_histograms.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -169,7 +170,7 @@ void AppCacheUpdateJob::URLFetcher::OnResponseStarted(
|
| return;
|
| }
|
|
|
| - if (url_.SchemeIsSecure()) {
|
| + if (url_.SchemeIsCryptographic()) {
|
| // Do not cache content with cert errors.
|
| // Also, we willfully violate the HTML5 spec at this point in order
|
| // to support the appcaching of cross-origin HTTPS resources.
|
|
|