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

Side by Side Diff: content/child/indexed_db/indexed_db_dispatcher_unittest.cc

Issue 16325022: move content/common_child to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/memory/scoped_ptr.h" 5 #include "base/memory/scoped_ptr.h"
6 #include "base/values.h" 6 #include "base/values.h"
7 #include "content/child/indexed_db/indexed_db_dispatcher.h"
7 #include "content/common/indexed_db/indexed_db_key.h" 8 #include "content/common/indexed_db/indexed_db_key.h"
8 #include "content/common_child/indexed_db/indexed_db_dispatcher.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "third_party/WebKit/public/platform/WebData.h" 10 #include "third_party/WebKit/public/platform/WebData.h"
11 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h" 11 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h"
12 12
13 using WebKit::WebData; 13 using WebKit::WebData;
14 using WebKit::WebIDBCallbacks; 14 using WebKit::WebIDBCallbacks;
15 using WebKit::WebIDBDatabase; 15 using WebKit::WebIDBDatabase;
16 using WebKit::WebIDBDatabaseError; 16 using WebKit::WebIDBDatabaseError;
17 using WebKit::WebIDBKey; 17 using WebKit::WebIDBKey;
18 using WebKit::WebVector; 18 using WebKit::WebVector;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 key, 53 key,
54 WebIDBDatabase::AddOrUpdate, 54 WebIDBDatabase::AddOrUpdate,
55 &callbacks, 55 &callbacks,
56 WebVector<long long>(), 56 WebVector<long long>(),
57 WebVector<WebVector<WebIDBKey> >()); 57 WebVector<WebVector<WebIDBKey> >());
58 58
59 EXPECT_TRUE(callbacks.error_seen()); 59 EXPECT_TRUE(callbacks.error_seen());
60 } 60 }
61 61
62 } // namespace content 62 } // namespace content
OLDNEW
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.cc ('k') | content/child/indexed_db/indexed_db_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698