Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Unified Diff: webkit/appcache/mock_appcache_policy.h

Issue 7720022: Third-party appcache blocking. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Keeping up to date with trunk. Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/appcache/appcache_update_job_unittest.cc ('k') | webkit/appcache/mock_appcache_policy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/mock_appcache_policy.h
diff --git a/webkit/appcache/mock_appcache_policy.h b/webkit/appcache/mock_appcache_policy.h
new file mode 100644
index 0000000000000000000000000000000000000000..2fb962d8daf7808e1dbbedfe2c5bbf76063aa081
--- /dev/null
+++ b/webkit/appcache/mock_appcache_policy.h
@@ -0,0 +1,30 @@
+// Copyright (c) 2011 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.
+
+#ifndef WEBKIT_APPCACHE_MOCK_APPCACHE_POLICY_H_
+#define WEBKIT_APPCACHE_MOCK_APPCACHE_POLICY_H_
+
+#include "googleurl/src/gurl.h"
+#include "webkit/appcache/appcache_policy.h"
+
+namespace appcache {
+
+class MockAppCachePolicy : public AppCachePolicy {
+ public:
+ MockAppCachePolicy();
+ virtual ~MockAppCachePolicy();
+
+ virtual bool CanLoadAppCache(const GURL& manifest_url,
+ const GURL& first_party);
+ virtual bool CanCreateAppCache(const GURL& manifest_url,
+ const GURL& first_party);
+
+ bool can_load_return_value_;
+ bool can_create_return_value_;
+ GURL requested_manifest_url_;
+};
+
+} // namespace appcache
+
+#endif // WEBKIT_APPCACHE_MOCK_APPCACHE_POLICY_H_
« no previous file with comments | « webkit/appcache/appcache_update_job_unittest.cc ('k') | webkit/appcache/mock_appcache_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698