| OLD | NEW |
| 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 WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ | 5 #ifndef WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ |
| 6 #define WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ | 6 #define WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/nullable_string16.h" | 13 #include "base/nullable_base::string16.h" |
| 14 #include "base/string16.h" | 14 #include "base/string16.h.h" |
| 15 #include "sql/connection.h" | 15 #include "sql/connection.h" |
| 16 #include "webkit/dom_storage/dom_storage_types.h" | 16 #include "webkit/dom_storage/dom_storage_types.h" |
| 17 #include "webkit/storage/webkit_storage_export.h" | 17 #include "webkit/storage/webkit_storage_export.h" |
| 18 | 18 |
| 19 namespace dom_storage { | 19 namespace dom_storage { |
| 20 | 20 |
| 21 // Represents a SQLite based backing for DOM storage data. This | 21 // Represents a SQLite based backing for DOM storage data. This |
| 22 // class is designed to be used on a single thread. | 22 // class is designed to be used on a single thread. |
| 23 class WEBKIT_STORAGE_EXPORT DomStorageDatabase { | 23 class WEBKIT_STORAGE_EXPORT DomStorageDatabase { |
| 24 public: | 24 public: |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 const base::FilePath file_path_; | 110 const base::FilePath file_path_; |
| 111 scoped_ptr<sql::Connection> db_; | 111 scoped_ptr<sql::Connection> db_; |
| 112 bool failed_to_open_; | 112 bool failed_to_open_; |
| 113 bool tried_to_recreate_; | 113 bool tried_to_recreate_; |
| 114 bool known_to_be_empty_; | 114 bool known_to_be_empty_; |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 } // namespace dom_storage | 117 } // namespace dom_storage |
| 118 | 118 |
| 119 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ | 119 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_DATABASE_H_ |
| OLD | NEW |