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

Side by Side Diff: content/browser/appcache/appcache_database.h

Issue 358993007: Fix nits in content/browser/appcache/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/appcache/appcache.h ('k') | content/browser/appcache/appcache_group.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_
6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
(...skipping 24 matching lines...) Expand all
35 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, ExperimentalFlags); 35 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, ExperimentalFlags);
36 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, OnlineWhiteListRecords); 36 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, OnlineWhiteListRecords);
37 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, ReCreate); 37 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, ReCreate);
38 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, DeletableResponseIds); 38 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, DeletableResponseIds);
39 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, OriginUsage); 39 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, OriginUsage);
40 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, UpgradeSchema3to5); 40 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, UpgradeSchema3to5);
41 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, UpgradeSchema4to5); 41 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, UpgradeSchema4to5);
42 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, WasCorrutionDetected); 42 FORWARD_DECLARE_TEST(AppCacheDatabaseTest, WasCorrutionDetected);
43 class AppCacheDatabaseTest; 43 class AppCacheDatabaseTest;
44 class AppCacheStorageImplTest; 44 class AppCacheStorageImplTest;
45 }
46
47 namespace content {
48 45
49 class CONTENT_EXPORT AppCacheDatabase { 46 class CONTENT_EXPORT AppCacheDatabase {
50 public: 47 public:
51 struct CONTENT_EXPORT GroupRecord { 48 struct CONTENT_EXPORT GroupRecord {
52 GroupRecord(); 49 GroupRecord();
53 ~GroupRecord(); 50 ~GroupRecord();
54 51
55 int64 group_id; 52 int64 group_id;
56 GURL origin; 53 GURL origin;
57 GURL manifest_url; 54 GURL manifest_url;
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema3to5); 242 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema3to5);
246 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema4to5); 243 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema4to5);
247 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, WasCorrutionDetected); 244 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, WasCorrutionDetected);
248 245
249 DISALLOW_COPY_AND_ASSIGN(AppCacheDatabase); 246 DISALLOW_COPY_AND_ASSIGN(AppCacheDatabase);
250 }; 247 };
251 248
252 } // namespace content 249 } // namespace content
253 250
254 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ 251 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache.h ('k') | content/browser/appcache/appcache_group.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698