| 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 "content/browser/indexed_db/indexed_db_callbacks.h" | 5 #include "content/browser/indexed_db/indexed_db_callbacks.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| 11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
| 12 #include "content/browser/child_process_security_policy_impl.h" | 12 #include "content/browser/child_process_security_policy_impl.h" |
| 13 #include "content/browser/fileapi/fileapi_message_filter.h" | 13 #include "content/browser/fileapi/fileapi_message_filter.h" |
| 14 #include "content/browser/indexed_db/indexed_db_blob_info.h" | 14 #include "content/browser/indexed_db/indexed_db_blob_info.h" |
| 15 #include "content/browser/indexed_db/indexed_db_connection.h" | 15 #include "content/browser/indexed_db/indexed_db_connection.h" |
| 16 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 16 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
| 17 #include "content/browser/indexed_db/indexed_db_cursor.h" | 17 #include "content/browser/indexed_db/indexed_db_cursor.h" |
| 18 #include "content/browser/indexed_db/indexed_db_database_callbacks.h" | 18 #include "content/browser/indexed_db/indexed_db_database_callbacks.h" |
| 19 #include "content/browser/indexed_db/indexed_db_database_error.h" | 19 #include "content/browser/indexed_db/indexed_db_database_error.h" |
| 20 #include "content/browser/indexed_db/indexed_db_metadata.h" | 20 #include "content/browser/indexed_db/indexed_db_metadata.h" |
| 21 #include "content/browser/indexed_db/indexed_db_value.h" | 21 #include "content/browser/indexed_db/indexed_db_value.h" |
| 22 #include "content/common/indexed_db/indexed_db_constants.h" | 22 #include "content/common/indexed_db/indexed_db_constants.h" |
| 23 #include "content/common/indexed_db/indexed_db_messages.h" | 23 #include "content/common/indexed_db/indexed_db_messages.h" |
| 24 #include "storage/browser/blob/blob_storage_context.h" | 24 #include "storage/browser/blob/blob_storage_context.h" |
| 25 #include "storage/browser/blob/shareable_file_reference.h" |
| 25 #include "storage/browser/quota/quota_manager.h" | 26 #include "storage/browser/quota/quota_manager.h" |
| 26 #include "storage/common/blob/blob_data.h" | |
| 27 #include "storage/common/blob/shareable_file_reference.h" | |
| 28 | 27 |
| 29 using storage::ShareableFileReference; | 28 using storage::ShareableFileReference; |
| 30 | 29 |
| 31 namespace content { | 30 namespace content { |
| 32 | 31 |
| 33 namespace { | 32 namespace { |
| 34 const int32 kNoCursor = -1; | 33 const int32 kNoCursor = -1; |
| 35 const int32 kNoDatabaseCallbacks = -1; | 34 const int32 kNoDatabaseCallbacks = -1; |
| 36 const int64 kNoTransaction = -1; | 35 const int64 kNoTransaction = -1; |
| 37 } | 36 } |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 ipc_thread_id_, ipc_callbacks_id_)); | 583 ipc_thread_id_, ipc_callbacks_id_)); |
| 585 dispatcher_host_ = NULL; | 584 dispatcher_host_ = NULL; |
| 586 } | 585 } |
| 587 | 586 |
| 588 void IndexedDBCallbacks::SetConnectionOpenStartTime( | 587 void IndexedDBCallbacks::SetConnectionOpenStartTime( |
| 589 const base::TimeTicks& start_time) { | 588 const base::TimeTicks& start_time) { |
| 590 connection_open_start_time_ = start_time; | 589 connection_open_start_time_ = start_time; |
| 591 } | 590 } |
| 592 | 591 |
| 593 } // namespace content | 592 } // namespace content |
| OLD | NEW |