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

Side by Side Diff: components/history/core/browser/history_database.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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 COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_
6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ 6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_
7 7
8 #include "base/basictypes.h" 8 #include <stddef.h>
9
9 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
10 #include "base/gtest_prod_util.h" 11 #include "base/gtest_prod_util.h"
12 #include "base/macros.h"
11 #include "build/build_config.h" 13 #include "build/build_config.h"
12 #include "components/history/core/browser/download_database.h" 14 #include "components/history/core/browser/download_database.h"
13 #include "components/history/core/browser/history_types.h" 15 #include "components/history/core/browser/history_types.h"
14 #include "components/history/core/browser/url_database.h" 16 #include "components/history/core/browser/url_database.h"
15 #include "components/history/core/browser/visit_database.h" 17 #include "components/history/core/browser/visit_database.h"
16 #include "components/history/core/browser/visitsegment_database.h" 18 #include "components/history/core/browser/visitsegment_database.h"
17 #include "sql/connection.h" 19 #include "sql/connection.h"
18 #include "sql/init_status.h" 20 #include "sql/init_status.h"
19 #include "sql/meta_table.h" 21 #include "sql/meta_table.h"
20 22
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 sql::MetaTable meta_table_; 195 sql::MetaTable meta_table_;
194 196
195 base::Time cached_early_expiration_threshold_; 197 base::Time cached_early_expiration_threshold_;
196 198
197 DISALLOW_COPY_AND_ASSIGN(HistoryDatabase); 199 DISALLOW_COPY_AND_ASSIGN(HistoryDatabase);
198 }; 200 };
199 201
200 } // namespace history 202 } // namespace history
201 203
202 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ 204 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_
OLDNEW
« no previous file with comments | « components/history/core/browser/history_backend_unittest.cc ('k') | components/history/core/browser/history_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698