| Index: webkit/glue/idb_bindings.cc
|
| diff --git a/webkit/glue/idb_bindings.cc b/webkit/glue/idb_bindings.cc
|
| index 57b8eb4c461a42bfa4c358c45b541bf04608523c..f57cd3bc1366512ea2e79b8f7674af8053d1e3fe 100644
|
| --- a/webkit/glue/idb_bindings.cc
|
| +++ b/webkit/glue/idb_bindings.cc
|
| @@ -7,36 +7,7 @@
|
| #include "base/basictypes.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/utf_string_conversions.h"
|
| -#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h"
|
| -#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKeyPath.h"
|
| -#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerializedScriptValue.h"
|
| -#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
|
|
|
| namespace webkit_glue {
|
|
|
| -using WebKit::WebIDBKey;
|
| -using WebKit::WebIDBKeyPath;
|
| -using WebKit::WebSerializedScriptValue;
|
| -using WebKit::WebString;
|
| -
|
| -void IDBKeysFromValuesAndKeyPath(
|
| - const std::vector<WebSerializedScriptValue>& serialized_script_values,
|
| - const WebIDBKeyPath& idb_key_path,
|
| - std::vector<WebIDBKey>* values) {
|
| - for (std::vector<WebSerializedScriptValue>::const_iterator i =
|
| - serialized_script_values.begin();
|
| - i != serialized_script_values.end(); ++i) {
|
| - values->push_back(
|
| - WebIDBKey::createFromValueAndKeyPath(*i, idb_key_path));
|
| - }
|
| -}
|
| -
|
| -WebSerializedScriptValue InjectIDBKey(
|
| - const WebIDBKey& key,
|
| - const WebSerializedScriptValue& value,
|
| - const WebIDBKeyPath& idb_key_path) {
|
| - return WebIDBKey::injectIDBKeyIntoSerializedValue(
|
| - key, value, idb_key_path);
|
| -}
|
| -
|
| } // namespace webkit_glue
|
|
|