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_directory_database.h" | 5 #include "webkit/browser/fileapi/sandbox_directory_database.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <set> | 9 #include <set> |
10 #include <stack> | 10 #include <stack> |
11 | 11 |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/files/file_enumerator.h" | 13 #include "base/files/file_enumerator.h" |
14 #include "base/location.h" | 14 #include "base/location.h" |
15 #include "base/metrics/histogram.h" | 15 #include "base/metrics/histogram.h" |
16 #include "base/pickle.h" | 16 #include "base/pickle.h" |
17 #include "base/string_util.h" | |
18 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
| 18 #include "base/strings/string_util.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/browser/fileapi/file_system_usage_cache.h" | 21 #include "webkit/browser/fileapi/file_system_usage_cache.h" |
22 #include "webkit/common/fileapi/file_system_util.h" | 22 #include "webkit/common/fileapi/file_system_util.h" |
23 | 23 |
24 namespace { | 24 namespace { |
25 | 25 |
26 bool PickleFromFileInfo( | 26 bool PickleFromFileInfo( |
27 const fileapi::SandboxDirectoryDatabase::FileInfo& info, | 27 const fileapi::SandboxDirectoryDatabase::FileInfo& info, |
28 Pickle* pickle) { | 28 Pickle* pickle) { |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 | 916 |
917 void SandboxDirectoryDatabase::HandleError( | 917 void SandboxDirectoryDatabase::HandleError( |
918 const tracked_objects::Location& from_here, | 918 const tracked_objects::Location& from_here, |
919 const leveldb::Status& status) { | 919 const leveldb::Status& status) { |
920 LOG(ERROR) << "SandboxDirectoryDatabase failed at: " | 920 LOG(ERROR) << "SandboxDirectoryDatabase failed at: " |
921 << from_here.ToString() << " with error: " << status.ToString(); | 921 << from_here.ToString() << " with error: " << status.ToString(); |
922 db_.reset(); | 922 db_.reset(); |
923 } | 923 } |
924 | 924 |
925 } // namespace fileapi | 925 } // namespace fileapi |
OLD | NEW |