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

Unified Diff: webkit/dom_storage/dom_storage_context.h

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_context.h
diff --git a/webkit/dom_storage/dom_storage_context.h b/webkit/dom_storage/dom_storage_context.h
index 20ae0ed7fbf740a9dcc3339cfce2e2d498e2482c..33ae2c557312728d35237c65b11e85f17502a2f2 100644
--- a/webkit/dom_storage/dom_storage_context.h
+++ b/webkit/dom_storage/dom_storage_context.h
@@ -68,14 +68,14 @@ class WEBKIT_STORAGE_EXPORT DomStorageContext
public:
virtual void OnDomStorageItemSet(
const DomStorageArea* area,
- const string16& key,
- const string16& new_value,
+ const base::string16& key,
+ const base::string16& new_value,
const NullableString16& old_value, // may be null on initial insert
const GURL& page_url) = 0;
virtual void OnDomStorageItemRemoved(
const DomStorageArea* area,
- const string16& key,
- const string16& old_value,
+ const base::string16& key,
+ const base::string16& old_value,
const GURL& page_url) = 0;
virtual void OnDomStorageAreaCleared(
const DomStorageArea* area,
@@ -131,14 +131,14 @@ class WEBKIT_STORAGE_EXPORT DomStorageContext
void RemoveEventObserver(EventObserver* observer);
void NotifyItemSet(
const DomStorageArea* area,
- const string16& key,
- const string16& new_value,
+ const base::string16& key,
+ const base::string16& new_value,
const NullableString16& old_value,
const GURL& page_url);
void NotifyItemRemoved(
const DomStorageArea* area,
- const string16& key,
- const string16& old_value,
+ const base::string16& key,
+ const base::string16& old_value,
const GURL& page_url);
void NotifyAreaCleared(
const DomStorageArea* area,

Powered by Google App Engine
This is Rietveld 408576698