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

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

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 12 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
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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <set> 11 #include <set>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
15 #include "base/gtest_prod_util.h" 15 #include "base/gtest_prod_util.h"
16 #include "base/macros.h"
16 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
17 #include "base/time/time.h" 18 #include "base/time/time.h"
18 #include "content/common/appcache_interfaces.h" 19 #include "content/common/appcache_interfaces.h"
19 #include "content/common/content_export.h" 20 #include "content/common/content_export.h"
20 #include "url/gurl.h" 21 #include "url/gurl.h"
21 22
22 namespace sql { 23 namespace sql {
23 class Connection; 24 class Connection;
24 class MetaTable; 25 class MetaTable;
25 class Statement; 26 class Statement;
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema4to7); 261 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema4to7);
261 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema5or6to7); 262 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, UpgradeSchema5or6to7);
262 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, WasCorrutionDetected); 263 FRIEND_TEST_ALL_PREFIXES(content::AppCacheDatabaseTest, WasCorrutionDetected);
263 264
264 DISALLOW_COPY_AND_ASSIGN(AppCacheDatabase); 265 DISALLOW_COPY_AND_ASSIGN(AppCacheDatabase);
265 }; 266 };
266 267
267 } // namespace content 268 } // namespace content
268 269
269 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ 270 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_backend_impl.cc ('k') | content/browser/appcache/appcache_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698