OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_TEST_APPCACHE_TEST_HELPER_H_ | 5 #ifndef CONTENT_TEST_APPCACHE_TEST_HELPER_H_ |
6 #define CONTENT_PUBLIC_TEST_APPCACHE_TEST_HELPER_H_ | 6 #define CONTENT_TEST_APPCACHE_TEST_HELPER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "webkit/browser/appcache/appcache_storage.h" | 10 #include "webkit/browser/appcache/appcache_storage.h" |
11 | 11 |
12 namespace appcache { | 12 namespace appcache { |
13 class AppCacheService; | 13 class AppCacheService; |
14 } | 14 } |
15 | 15 |
16 namespace content { | 16 namespace content { |
(...skipping 21 matching lines...) Expand all Loading... |
38 int appcache_id_; | 38 int appcache_id_; |
39 int response_id_; | 39 int response_id_; |
40 scoped_refptr<appcache::AppCacheInfoCollection> appcache_info_; | 40 scoped_refptr<appcache::AppCacheInfoCollection> appcache_info_; |
41 std::set<GURL>* origins_; // not owned | 41 std::set<GURL>* origins_; // not owned |
42 | 42 |
43 DISALLOW_COPY_AND_ASSIGN(AppCacheTestHelper); | 43 DISALLOW_COPY_AND_ASSIGN(AppCacheTestHelper); |
44 }; | 44 }; |
45 | 45 |
46 } // namespace content | 46 } // namespace content |
47 | 47 |
48 #endif // CONTENT_PUBLIC_TEST_APPCACHE_TEST_HELPER_H_ | 48 #endif // CONTENT_TEST_APPCACHE_TEST_HELPER_H_ |
OLD | NEW |