OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/browser/indexed_db/indexed_db_backing_store.h" | 5 #include "content/browser/indexed_db/indexed_db_backing_store.h" |
6 | 6 |
7 #include "base/file_util.h" | |
8 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/file_util.h" |
9 #include "base/format_macros.h" | 9 #include "base/format_macros.h" |
10 #include "base/json/json_reader.h" | 10 #include "base/json/json_reader.h" |
11 #include "base/json/json_writer.h" | 11 #include "base/json/json_writer.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
14 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
15 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
17 #include "content/browser/child_process_security_policy_impl.h" | 17 #include "content/browser/child_process_security_policy_impl.h" |
18 #include "content/browser/indexed_db/indexed_db_blob_info.h" | 18 #include "content/browser/indexed_db/indexed_db_blob_info.h" |
(...skipping 4275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4294 int64_t size, | 4294 int64_t size, |
4295 base::Time last_modified) | 4295 base::Time last_modified) |
4296 : is_file_(true), | 4296 : is_file_(true), |
4297 file_path_(file_path), | 4297 file_path_(file_path), |
4298 key_(key), | 4298 key_(key), |
4299 size_(size), | 4299 size_(size), |
4300 last_modified_(last_modified) { | 4300 last_modified_(last_modified) { |
4301 } | 4301 } |
4302 | 4302 |
4303 } // namespace content | 4303 } // namespace content |
OLD | NEW |