| Index: content/browser/dom_storage/dom_storage_database.cc
|
| diff --git a/content/browser/dom_storage/dom_storage_database.cc b/content/browser/dom_storage/dom_storage_database.cc
|
| index 690d02acf2f1b1d079144b1ec72d952f2511a245..155f1c67f234c4dfe2ce3f9c58f2eeab494c76fd 100644
|
| --- a/content/browser/dom_storage/dom_storage_database.cc
|
| +++ b/content/browser/dom_storage/dom_storage_database.cc
|
| @@ -107,7 +107,7 @@ bool DOMStorageDatabase::CommitChanges(bool clear_all_first,
|
| "INSERT INTO ItemTable VALUES (?,?)"));
|
| statement.BindString16(0, key);
|
| statement.BindBlob(1, value.string().data(),
|
| - value.string().length() * sizeof(char16));
|
| + value.string().length() * sizeof(base::char16));
|
| known_to_be_empty_ = false;
|
| did_insert = true;
|
| }
|
|
|