When Retrier succeeds, record errors it encountered.
[chromium-blink-merge.git] / webkit / appcache / appcache_policy.h
blob7ed8dc3627ba6f4cffb469c0438ffb21bb80bf1c
1 // Copyright (c) 2011 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 WEBKIT_APPCACHE_APPCACHE_POLICY_H_
6 #define WEBKIT_APPCACHE_APPCACHE_POLICY_H_
8 class GURL;
10 namespace appcache {
12 class AppCachePolicy {
13 public:
14 AppCachePolicy() {}
16 // Called prior to loading a main resource from the appache.
17 // Returns true if allowed. This is expected to return immediately
18 // without any user prompt.
19 virtual bool CanLoadAppCache(const GURL& manifest_url,
20 const GURL& first_party) = 0;
22 // Called prior to creating a new appcache. Returns true if allowed.
23 virtual bool CanCreateAppCache(const GURL& manifest_url,
24 const GURL& first_party) = 0;
26 protected:
27 ~AppCachePolicy() {}
30 } // namespace appcache
32 #endif // WEBKIT_APPCACHE_APPCACHE_POLICY_H_