| 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/in_process_webkit/indexed_db_callbacks.h" | 5 #include "content/browser/indexed_db/indexed_db_callbacks.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "content/browser/indexed_db/indexed_db_metadata.h" | 10 #include "content/browser/indexed_db/indexed_db_metadata.h" |
| 11 #include "content/browser/indexed_db/webidbdatabase_impl.h" | 11 #include "content/browser/indexed_db/webidbdatabase_impl.h" |
| 12 #include "content/common/indexed_db/indexed_db_messages.h" | 12 #include "content/common/indexed_db/indexed_db_messages.h" |
| 13 #include "webkit/browser/quota/quota_manager.h" | 13 #include "webkit/browser/quota/quota_manager.h" |
| 14 | 14 |
| 15 using WebKit::WebData; | 15 using WebKit::WebData; |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 ipc_thread_id(), ipc_callbacks_id())); | 287 ipc_thread_id(), ipc_callbacks_id())); |
| 288 } | 288 } |
| 289 | 289 |
| 290 void IndexedDBCallbacks<std::vector<char> >::onSuccess( | 290 void IndexedDBCallbacks<std::vector<char> >::onSuccess( |
| 291 const IndexedDBKey& value) { | 291 const IndexedDBKey& value) { |
| 292 dispatcher_host()->Send(new IndexedDBMsg_CallbacksSuccessIndexedDBKey( | 292 dispatcher_host()->Send(new IndexedDBMsg_CallbacksSuccessIndexedDBKey( |
| 293 ipc_thread_id(), ipc_callbacks_id(), value)); | 293 ipc_thread_id(), ipc_callbacks_id(), value)); |
| 294 } | 294 } |
| 295 | 295 |
| 296 } // namespace content | 296 } // namespace content |
| OLD | NEW |