[Storage] Blob Storage Refactoring pt 1:
[chromium-blink-merge.git] / content / browser / appcache / mock_appcache_policy.h
bloba571e25efb69a8a80821ddab89e7e325d5f67916
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 #ifndef CONTENT_BROWSER_APPCACHE_MOCK_APPCACHE_POLICY_H_
6 #define CONTENT_BROWSER_APPCACHE_MOCK_APPCACHE_POLICY_H_
8 #include "base/compiler_specific.h"
9 #include "content/browser/appcache/appcache_policy.h"
10 #include "url/gurl.h"
12 namespace content {
14 class MockAppCachePolicy : public AppCachePolicy {
15 public:
16 MockAppCachePolicy();
17 virtual ~MockAppCachePolicy();
19 bool CanLoadAppCache(const GURL& manifest_url,
20 const GURL& first_party) override;
21 bool CanCreateAppCache(const GURL& manifest_url,
22 const GURL& first_party) override;
24 bool can_load_return_value_;
25 bool can_create_return_value_;
26 GURL requested_manifest_url_;
29 } // namespace content
31 #endif // CONTENT_BROWSER_APPCACHE_MOCK_APPCACHE_POLICY_H_