| 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 ea4dbaf756f8aabf94a34aaa5415c25c4458c5a4..fa77f29b1b0917c7dac00f1a6b75d8d1b3fb6dcf 100644
|
| --- a/content/common/indexed_db/indexed_db_dispatcher_unittest.cc
|
| +++ b/content/common/indexed_db/indexed_db_dispatcher_unittest.cc
|
| @@ -12,6 +12,9 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h"
|
|
|
| +using content::IndexedDBKey;
|
| +using content::SerializedScriptValue;
|
| +
|
| class FakeWebIDBTransaction : public WebKit::WebIDBTransaction {
|
| public:
|
| FakeWebIDBTransaction() {}
|
| @@ -22,7 +25,7 @@ TEST(IndexedDBDispatcherTest, ValueSizeTest) {
|
| data.resize(kMaxIDBValueSizeInBytes / sizeof(char16) + 1, 'x');
|
| const bool kIsNull = false;
|
| const bool kIsInvalid = false;
|
| - const content::SerializedScriptValue value(kIsNull, kIsInvalid, data);
|
| + const SerializedScriptValue value(kIsNull, kIsInvalid, data);
|
| const int32 dummy_id = -1;
|
|
|
| {
|
|
|