Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Unified Diff: content/common/indexed_db/indexed_db_dispatcher_unittest.cc

Issue 10759012: Chromium side of plumbing for passing renderer-generated keys through IPC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Include unit tests too Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher.cc ('k') | content/common/indexed_db/indexed_db_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/indexed_db_dispatcher_unittest.cc
diff --git a/content/common/indexed_db/indexed_db_dispatcher_unittest.cc b/content/common/indexed_db/indexed_db_dispatcher_unittest.cc
index fa77f29b1b0917c7dac00f1a6b75d8d1b3fb6dcf..db5ab25b69a3c04b268c3c0f0370bfdee9633ac7 100644
--- a/content/common/indexed_db/indexed_db_dispatcher_unittest.cc
+++ b/content/common/indexed_db/indexed_db_dispatcher_unittest.cc
@@ -14,6 +14,8 @@
using content::IndexedDBKey;
using content::SerializedScriptValue;
+using WebKit::WebVector;
+using WebKit::WebString;
class FakeWebIDBTransaction : public WebKit::WebIDBTransaction {
public:
@@ -40,6 +42,8 @@ TEST(IndexedDBDispatcherTest, ValueSizeTest) {
static_cast<WebKit::WebIDBCallbacks*>(NULL),
dummy_id,
FakeWebIDBTransaction(),
+ WebVector<WebString>(),
+ WebVector<WebVector<WebKit::WebIDBKey> >(),
&ec);
EXPECT_NE(ec, 0);
}
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher.cc ('k') | content/common/indexed_db/indexed_db_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698