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/common/indexed_db/proxy_webidbdatabase_impl.h" | 5 #include "content/common/indexed_db/proxy_webidbdatabase_impl.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "content/common/child_thread.h" | 9 #include "content/common/child_thread.h" |
10 #include "content/common/indexed_db/indexed_db_messages.h" | 10 #include "content/common/indexed_db/indexed_db_messages.h" |
11 #include "content/common/indexed_db/indexed_db_dispatcher.h" | 11 #include "content/common/indexed_db/indexed_db_dispatcher.h" |
12 #include "content/common/indexed_db/proxy_webidbobjectstore_impl.h" | 12 #include "content/common/indexed_db/proxy_webidbobjectstore_impl.h" |
13 #include "content/common/indexed_db/proxy_webidbtransaction_impl.h" | 13 #include "content/common/indexed_db/proxy_webidbtransaction_impl.h" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" |
| 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebVector.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyPath.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyPath.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBMetadata.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBMetadata.h" |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebVector.h" | |
18 #include "webkit/glue/worker_task_runner.h" | 18 #include "webkit/glue/worker_task_runner.h" |
19 | 19 |
20 using WebKit::WebDOMStringList; | 20 using WebKit::WebDOMStringList; |
21 using WebKit::WebExceptionCode; | 21 using WebKit::WebExceptionCode; |
22 using WebKit::WebFrame; | 22 using WebKit::WebFrame; |
23 using WebKit::WebIDBCallbacks; | 23 using WebKit::WebIDBCallbacks; |
24 using WebKit::WebIDBDatabaseCallbacks; | 24 using WebKit::WebIDBDatabaseCallbacks; |
25 using WebKit::WebIDBMetadata; | 25 using WebKit::WebIDBMetadata; |
26 using WebKit::WebIDBKeyPath; | 26 using WebKit::WebIDBKeyPath; |
27 using WebKit::WebIDBTransaction; | 27 using WebKit::WebIDBTransaction; |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 long long object_store_id, | 330 long long object_store_id, |
331 long long index_id) | 331 long long index_id) |
332 { | 332 { |
333 IndexedDBDispatcher::Send( | 333 IndexedDBDispatcher::Send( |
334 new IndexedDBHostMsg_DatabaseDeleteIndex( | 334 new IndexedDBHostMsg_DatabaseDeleteIndex( |
335 ipc_database_id_, | 335 ipc_database_id_, |
336 transaction_id, | 336 transaction_id, |
337 object_store_id, index_id)); | 337 object_store_id, index_id)); |
338 } | 338 } |
339 } // namespace content | 339 } // namespace content |
OLD | NEW |