1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/browser/appcache/mock_appcache_policy.h"
9 MockAppCachePolicy::MockAppCachePolicy()
10 : can_load_return_value_(true), can_create_return_value_(true) {
13 MockAppCachePolicy::~MockAppCachePolicy() {
16 bool MockAppCachePolicy::CanLoadAppCache(const GURL
& manifest_url
,
17 const GURL
& first_party
) {
18 requested_manifest_url_
= manifest_url
;
19 return can_load_return_value_
;
22 bool MockAppCachePolicy::CanCreateAppCache(const GURL
& manifest_url
,
23 const GURL
& first_party
) {
24 requested_manifest_url_
= manifest_url
;
25 return can_create_return_value_
;
28 } // namespace content