| Index: content/browser/dom_storage/dom_storage_database.h
|
| diff --git a/content/browser/dom_storage/dom_storage_database.h b/content/browser/dom_storage/dom_storage_database.h
|
| index 72f5d7373723535f9c7ee67cbe4305ca3f29ae49..75416374edee676e1a5ce2f7e27a52edd709df1f 100644
|
| --- a/content/browser/dom_storage/dom_storage_database.h
|
| +++ b/content/browser/dom_storage/dom_storage_database.h
|
| @@ -6,10 +6,10 @@
|
| #define CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_DATABASE_H_
|
|
|
| #include <map>
|
| +#include <memory>
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/gtest_prod_util.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/strings/nullable_string16.h"
|
| #include "base/strings/string16.h"
|
| #include "content/common/content_export.h"
|
| @@ -108,7 +108,7 @@ class CONTENT_EXPORT DOMStorageDatabase {
|
|
|
| // Path to the database on disk.
|
| const base::FilePath file_path_;
|
| - scoped_ptr<sql::Connection> db_;
|
| + std::unique_ptr<sql::Connection> db_;
|
| bool failed_to_open_;
|
| bool tried_to_recreate_;
|
| bool known_to_be_empty_;
|
|
|