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

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

Issue 10272018: Move IndexedDBKey, IndexedDBKeyRange into content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use "using content::*" aliasing for IDB/SSV types Created 8 years, 8 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_key.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 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;
{
« no previous file with comments | « content/common/indexed_db/indexed_db_dispatcher.cc ('k') | content/common/indexed_db/indexed_db_key.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698