| Index: content/common/indexed_db/proxy_webidbobjectstore_impl.cc
|
| ===================================================================
|
| --- content/common/indexed_db/proxy_webidbobjectstore_impl.cc (revision 163290)
|
| +++ content/common/indexed_db/proxy_webidbobjectstore_impl.cc (working copy)
|
| @@ -20,9 +20,6 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
|
|
|
| -using content::IndexedDBKey;
|
| -using content::IndexedDBKeyPath;
|
| -using content::IndexedDBKeyRange;
|
| using content::SerializedScriptValue;
|
| using WebKit::WebDOMStringList;
|
| using WebKit::WebExceptionCode;
|
| @@ -37,6 +34,8 @@
|
| using WebKit::WebString;
|
| using WebKit::WebVector;
|
|
|
| +namespace content {
|
| +
|
| RendererWebIDBObjectStoreImpl::RendererWebIDBObjectStoreImpl(
|
| int32 idb_object_store_id)
|
| : idb_object_store_id_(idb_object_store_id) {
|
| @@ -214,3 +213,5 @@
|
| idb_key_range, callbacks, idb_object_store_id_,
|
| transaction, &ec);
|
| }
|
| +
|
| +} // namespace content
|
|
|