OLD | NEW |
1 // Copyright (c) 2011 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/renderer/indexed_db/renderer_webidbobjectstore_impl.h" | 5 #include "content/common/indexed_db/proxy_webidbobjectstore_impl.h" |
6 | 6 |
7 #include "content/common/indexed_db/indexed_db_messages.h" | 7 #include "content/common/indexed_db/indexed_db_messages.h" |
8 #include "content/public/common/serialized_script_value.h" | 8 #include "content/public/common/serialized_script_value.h" |
9 #include "content/renderer/indexed_db/indexed_db_dispatcher.h" | 9 #include "content/common/indexed_db/indexed_db_dispatcher.h" |
10 #include "content/renderer/indexed_db/renderer_webidbindex_impl.h" | 10 #include "content/common/indexed_db/proxy_webidbindex_impl.h" |
11 #include "content/renderer/indexed_db/renderer_webidbtransaction_impl.h" | 11 #include "content/common/indexed_db/proxy_webidbtransaction_impl.h" |
12 #include "content/renderer/render_thread_impl.h" | 12 #include "content/common/child_thread.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMStringList.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMStringList.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" |
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyRange.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyRange.h" |
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h" |
17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize
dScriptValue.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize
dScriptValue.h" |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.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; |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 const WebIDBKeyRange& idb_key_range, | 176 const WebIDBKeyRange& idb_key_range, |
177 WebIDBCallbacks* callbacks, | 177 WebIDBCallbacks* callbacks, |
178 const WebIDBTransaction& transaction, | 178 const WebIDBTransaction& transaction, |
179 WebExceptionCode& ec) { | 179 WebExceptionCode& ec) { |
180 IndexedDBDispatcher* dispatcher = | 180 IndexedDBDispatcher* dispatcher = |
181 IndexedDBDispatcher::ThreadSpecificInstance(); | 181 IndexedDBDispatcher::ThreadSpecificInstance(); |
182 dispatcher->RequestIDBObjectStoreCount( | 182 dispatcher->RequestIDBObjectStoreCount( |
183 idb_key_range, callbacks, idb_object_store_id_, | 183 idb_key_range, callbacks, idb_object_store_id_, |
184 transaction, &ec); | 184 transaction, &ec); |
185 } | 185 } |
OLD | NEW |