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 #include "webkit/browser/fileapi/sandbox_origin_database.h" | 5 #include "webkit/browser/fileapi/sandbox_origin_database.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/files/file_enumerator.h" | 11 #include "base/files/file_enumerator.h" |
12 #include "base/format_macros.h" | 12 #include "base/format_macros.h" |
13 #include "base/location.h" | 13 #include "base/location.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/metrics/histogram.h" | 15 #include "base/metrics/histogram.h" |
16 #include "base/string_util.h" | |
17 #include "base/stringprintf.h" | |
18 #include "base/strings/string_number_conversions.h" | 16 #include "base/strings/string_number_conversions.h" |
| 17 #include "base/strings/string_util.h" |
| 18 #include "base/strings/stringprintf.h" |
19 #include "third_party/leveldatabase/src/include/leveldb/db.h" | 19 #include "third_party/leveldatabase/src/include/leveldb/db.h" |
20 #include "third_party/leveldatabase/src/include/leveldb/write_batch.h" | 20 #include "third_party/leveldatabase/src/include/leveldb/write_batch.h" |
21 #include "webkit/common/fileapi/file_system_util.h" | 21 #include "webkit/common/fileapi/file_system_util.h" |
22 | 22 |
23 namespace { | 23 namespace { |
24 | 24 |
25 const base::FilePath::CharType kOriginDatabaseName[] = | 25 const base::FilePath::CharType kOriginDatabaseName[] = |
26 FILE_PATH_LITERAL("Origins"); | 26 FILE_PATH_LITERAL("Origins"); |
27 const char kOriginKeyPrefix[] = "ORIGIN:"; | 27 const char kOriginKeyPrefix[] = "ORIGIN:"; |
28 const char kLastPathKey[] = "LAST_PATH"; | 28 const char kLastPathKey[] = "LAST_PATH"; |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 db_->Put(leveldb::WriteOptions(), LastPathKey(), std::string("-1")); | 329 db_->Put(leveldb::WriteOptions(), LastPathKey(), std::string("-1")); |
330 if (!status.ok()) { | 330 if (!status.ok()) { |
331 HandleError(FROM_HERE, status); | 331 HandleError(FROM_HERE, status); |
332 return false; | 332 return false; |
333 } | 333 } |
334 *number = -1; | 334 *number = -1; |
335 return true; | 335 return true; |
336 } | 336 } |
337 | 337 |
338 } // namespace fileapi | 338 } // namespace fileapi |
OLD | NEW |