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

Unified Diff: webkit/dom_storage/dom_storage_host.cc

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months 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: webkit/dom_storage/dom_storage_host.cc
diff --git a/webkit/dom_storage/dom_storage_host.cc b/webkit/dom_storage/dom_storage_host.cc
index ca0ac80f91006d44b15e050822bdef9ffae37388..a8637e0641bb9224623ef5c2e84f5bdf1a597e1c 100644
--- a/webkit/dom_storage/dom_storage_host.cc
+++ b/webkit/dom_storage/dom_storage_host.cc
@@ -80,7 +80,7 @@ NullableString16 DomStorageHost::GetAreaKey(int connection_id, unsigned index) {
}
NullableString16 DomStorageHost::GetAreaItem(int connection_id,
- const string16& key) {
+ const base::string16& key) {
DomStorageArea* area = GetOpenArea(connection_id);
if (!area)
return NullableString16(true);
@@ -88,8 +88,8 @@ NullableString16 DomStorageHost::GetAreaItem(int connection_id,
}
bool DomStorageHost::SetAreaItem(
- int connection_id, const string16& key,
- const string16& value, const GURL& page_url,
+ int connection_id, const base::string16& key,
+ const base::string16& value, const GURL& page_url,
NullableString16* old_value) {
DomStorageArea* area = GetOpenArea(connection_id);
if (!area) {
@@ -106,8 +106,8 @@ bool DomStorageHost::SetAreaItem(
}
bool DomStorageHost::RemoveAreaItem(
- int connection_id, const string16& key, const GURL& page_url,
- string16* old_value) {
+ int connection_id, const base::string16& key, const GURL& page_url,
+ base::string16* old_value) {
DomStorageArea* area = GetOpenArea(connection_id);
if (!area)
return false;

Powered by Google App Engine
This is Rietveld 408576698