Commit 28dd6cd3 authored by payal.pandey's avatar payal.pandey Committed by Commit bot

Subsituting pattern ScopedVector push_back.(ptr.release()) with push_back(ptr.Pass()) in indexed_db

BUG=457697

Review URL: https://codereview.chromium.org/1146473002

Cr-Commit-Position: refs/heads/master@{#330180}
parent 44437d57
......@@ -160,7 +160,7 @@ bool MakeIndexWriters(
if (!can_add_keys)
return true;
index_writers->push_back(index_writer.release());
index_writers->push_back(index_writer.Pass());
}
*completed = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment