Index: content/child/indexed_db/indexed_db_dispatcher_unittest.cc |
diff --git a/content/child/indexed_db/indexed_db_dispatcher_unittest.cc b/content/child/indexed_db/indexed_db_dispatcher_unittest.cc |
index cb0b40e8fdab3a632a184daa0e41f6894b3e9c64..029689f388eb7b134735e19390b0546b11017829 100644 |
--- a/content/child/indexed_db/indexed_db_dispatcher_unittest.cc |
+++ b/content/child/indexed_db/indexed_db_dispatcher_unittest.cc |
@@ -158,7 +158,7 @@ TEST_F(IndexedDBDispatcherTest, CursorTransactionId) { |
std::unique_ptr<WebIDBCursor> cursor; |
EXPECT_EQ(0UL, dispatcher.cursor_transaction_ids_.size()); |
- auto callbacks = new StrictMock<MockWebIDBCallbacks>(); |
+ auto* callbacks = new StrictMock<MockWebIDBCallbacks>(); |
// Reference first param (cursor) to keep it alive. |
// TODO(cmumford): Cleanup (and below) once std::addressof() is allowed. |
ON_CALL(*callbacks, onSuccess(testing::A<WebIDBCursor*>(), _, _, _)) |
@@ -204,7 +204,7 @@ TEST_F(IndexedDBDispatcherTest, CursorTransactionId) { |
{ |
EXPECT_EQ(0UL, dispatcher.cursor_transaction_ids_.size()); |
- auto callbacks = new StrictMock<MockWebIDBCallbacks>(); |
+ auto* callbacks = new StrictMock<MockWebIDBCallbacks>(); |
EXPECT_CALL(*callbacks, onSuccess(testing::A<const blink::WebIDBValue&>())) |
.Times(1); |