summaryrefslogtreecommitdiffstats
path: root/content/renderer/renderer_webidbcursor_impl.cc
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-21 21:37:47 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-21 21:37:47 +0000
commitcb4c5fbce80d3adb0faf6056c0e255aa481757d8 (patch)
tree166729f78dce22431eee769ab58fc241484c0b69 /content/renderer/renderer_webidbcursor_impl.cc
parentef32ea677641f25e47a40a101501b35b8e3a1bd0 (diff)
downloadchromium_src-cb4c5fbce80d3adb0faf6056c0e255aa481757d8.zip
chromium_src-cb4c5fbce80d3adb0faf6056c0e255aa481757d8.tar.gz
chromium_src-cb4c5fbce80d3adb0faf6056c0e255aa481757d8.tar.bz2
Move SerializedScriptValue to content/public/common and put it into the content namespace.
BUG=98716 Review URL: http://codereview.chromium.org/8372009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106781 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/renderer_webidbcursor_impl.cc')
-rw-r--r--content/renderer/renderer_webidbcursor_impl.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/renderer/renderer_webidbcursor_impl.cc b/content/renderer/renderer_webidbcursor_impl.cc
index 1837e2f..82996f4 100644
--- a/content/renderer/renderer_webidbcursor_impl.cc
+++ b/content/renderer/renderer_webidbcursor_impl.cc
@@ -15,7 +15,7 @@ using WebKit::WebSerializedScriptValue;
RendererWebIDBCursorImpl::RendererWebIDBCursorImpl(int32 idb_cursor_id,
const IndexedDBKey& key, const IndexedDBKey& primary_key,
- const SerializedScriptValue& value)
+ const content::SerializedScriptValue& value)
: idb_cursor_id_(idb_cursor_id),
key_(key),
primary_key_(primary_key),
@@ -55,8 +55,8 @@ void RendererWebIDBCursorImpl::update(const WebSerializedScriptValue& value,
WebExceptionCode& ec) {
IndexedDBDispatcher* dispatcher =
RenderThreadImpl::current()->indexed_db_dispatcher();
- dispatcher->RequestIDBCursorUpdate(SerializedScriptValue(value), callbacks,
- idb_cursor_id_, &ec);
+ dispatcher->RequestIDBCursorUpdate(
+ content::SerializedScriptValue(value), callbacks, idb_cursor_id_, &ec);
}
void RendererWebIDBCursorImpl::continueFunction(const WebIDBKey& key,