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

Unified Diff: content/common/dom_storage/dom_storage_map.cc

Issue 113403006: Update some uses of char16 to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: content/common/dom_storage/dom_storage_map.cc
diff --git a/content/common/dom_storage/dom_storage_map.cc b/content/common/dom_storage/dom_storage_map.cc
index 4fe2c3c71e33494fc8aaa1131147f4af3f51c117..de33a52e89ac4db83c0b2401509729fba56d9f19 100644
--- a/content/common/dom_storage/dom_storage_map.cc
+++ b/content/common/dom_storage/dom_storage_map.cc
@@ -11,7 +11,7 @@ namespace content {
namespace {
size_t size_of_item(const base::string16& key, const base::string16& value) {
- return (key.length() + value.length()) * sizeof(char16);
+ return (key.length() + value.length()) * sizeof(base::char16);
}
size_t CountBytes(const DOMStorageValuesMap& values) {
« no previous file with comments | « content/common/android/address_parser_internal.cc ('k') | content/common/dom_storage/dom_storage_map_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698