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

Side by Side Diff: components/webdata/common/web_database.h

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_WEBDATA_COMMON_WEB_DATABASE_H_ 5 #ifndef COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_
6 #define COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_ 6 #define COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
11 #include "components/webdata/common/web_database_table.h" 12 #include "components/webdata/common/web_database_table.h"
12 #include "components/webdata/common/webdata_export.h" 13 #include "components/webdata/common/webdata_export.h"
13 #include "sql/connection.h" 14 #include "sql/connection.h"
14 #include "sql/init_status.h" 15 #include "sql/init_status.h"
15 #include "sql/meta_table.h" 16 #include "sql/meta_table.h"
16 17
17 namespace base { 18 namespace base {
18 class FilePath; 19 class FilePath;
19 } 20 }
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 79
79 // Map of all the different tables that have been added to this 80 // Map of all the different tables that have been added to this
80 // object. Non-owning. 81 // object. Non-owning.
81 typedef std::map<WebDatabaseTable::TypeKey, WebDatabaseTable*> TableMap; 82 typedef std::map<WebDatabaseTable::TypeKey, WebDatabaseTable*> TableMap;
82 TableMap tables_; 83 TableMap tables_;
83 84
84 DISALLOW_COPY_AND_ASSIGN(WebDatabase); 85 DISALLOW_COPY_AND_ASSIGN(WebDatabase);
85 }; 86 };
86 87
87 #endif // COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_ 88 #endif // COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_
OLDNEW
« no previous file with comments | « components/webdata/common/web_data_service_base.h ('k') | components/webdata/common/web_database_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698