| Index: content/browser/appcache/appcache_database.h
|
| diff --git a/content/browser/appcache/appcache_database.h b/content/browser/appcache/appcache_database.h
|
| index e2b265d56f1b5fb309d272357968a13bc7053034..47ef0b14484beee9d24483deea4e42e1377c17fe 100644
|
| --- a/content/browser/appcache/appcache_database.h
|
| +++ b/content/browser/appcache/appcache_database.h
|
| @@ -8,13 +8,13 @@
|
| #include <stdint.h>
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <set>
|
| #include <vector>
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "content/common/appcache_interfaces.h"
|
| #include "content/common/content_export.h"
|
| @@ -234,8 +234,8 @@ class CONTENT_EXPORT AppCacheDatabase {
|
| void OnDatabaseError(int err, sql::Statement* stmt);
|
|
|
| base::FilePath db_file_path_;
|
| - scoped_ptr<sql::Connection> db_;
|
| - scoped_ptr<sql::MetaTable> meta_table_;
|
| + std::unique_ptr<sql::Connection> db_;
|
| + std::unique_ptr<sql::MetaTable> meta_table_;
|
| std::map<int64_t, base::Time> lazy_last_access_times_;
|
| bool is_disabled_;
|
| bool is_recreating_;
|
|
|