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

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

Issue 1917673002: Convert //components/[u-z]* from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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/macros.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "components/webdata/common/web_database_table.h" 11 #include "components/webdata/common/web_database_table.h"
13 #include "components/webdata/common/webdata_export.h" 12 #include "components/webdata/common/webdata_export.h"
14 #include "sql/connection.h" 13 #include "sql/connection.h"
15 #include "sql/init_status.h" 14 #include "sql/init_status.h"
16 #include "sql/meta_table.h" 15 #include "sql/meta_table.h"
17 16
18 namespace base { 17 namespace base {
19 class FilePath; 18 class FilePath;
20 } 19 }
21 20
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 78
80 // Map of all the different tables that have been added to this 79 // Map of all the different tables that have been added to this
81 // object. Non-owning. 80 // object. Non-owning.
82 typedef std::map<WebDatabaseTable::TypeKey, WebDatabaseTable*> TableMap; 81 typedef std::map<WebDatabaseTable::TypeKey, WebDatabaseTable*> TableMap;
83 TableMap tables_; 82 TableMap tables_;
84 83
85 DISALLOW_COPY_AND_ASSIGN(WebDatabase); 84 DISALLOW_COPY_AND_ASSIGN(WebDatabase);
86 }; 85 };
87 86
88 #endif // COMPONENTS_WEBDATA_COMMON_WEB_DATABASE_H_ 87 #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