Commit 09120a10 authored by Caleb Raitto's avatar Caleb Raitto Committed by Commit Bot

Fix variable reference in comment.

Change-Id: I23fbfa6a19299275501370180f3ea07136d33902
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1876552
Commit-Queue: Caleb Raitto <caraitto@chromium.org>
Reviewed-by: default avatarVictor Costan <pwnall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#708842}
parent ffc284ad
...@@ -269,8 +269,9 @@ class SQLitePersistentCookieStore::Backend ...@@ -269,8 +269,9 @@ class SQLitePersistentCookieStore::Backend
void LoadCookiesForKey(const std::string& domain, void LoadCookiesForKey(const std::string& domain,
LoadedCallback loaded_callback); LoadedCallback loaded_callback);
// Steps through all results of |smt|, makes a cookie from each, and adds the // Steps through all results of |statement|, makes a cookie from each, and
// cookie to |cookies|. Returns true if everything loaded successfully. // adds the cookie to |cookies|. Returns true if everything loaded
// successfully.
bool MakeCookiesFromSQLStatement( bool MakeCookiesFromSQLStatement(
std::vector<std::unique_ptr<CanonicalCookie>>* cookies, std::vector<std::unique_ptr<CanonicalCookie>>* cookies,
sql::Statement* statement); sql::Statement* statement);
......
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