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

Unified Diff: content/browser/dom_storage/dom_storage_message_filter.h

Issue 102593002: Convert string16 to base::string16 in content. (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/browser/dom_storage/dom_storage_message_filter.h
diff --git a/content/browser/dom_storage/dom_storage_message_filter.h b/content/browser/dom_storage/dom_storage_message_filter.h
index a2670ef37a0156e4e22194c375a9463e72f2e784..3c82418842cbe7bceeee9ad5c4e8546ec7f8a16a 100644
--- a/content/browser/dom_storage/dom_storage_message_filter.h
+++ b/content/browser/dom_storage/dom_storage_message_filter.h
@@ -53,11 +53,11 @@ class DOMStorageMessageFilter
void OnCloseStorageArea(int connection_id);
void OnLoadStorageArea(int connection_id, DOMStorageValuesMap* map,
bool* send_log_get_messages);
- void OnSetItem(int connection_id, const string16& key,
- const string16& value, const GURL& page_url);
- void OnLogGetItem(int connection_id, const string16& key,
+ void OnSetItem(int connection_id, const base::string16& key,
+ const base::string16& value, const GURL& page_url);
+ void OnLogGetItem(int connection_id, const base::string16& key,
const base::NullableString16& value);
- void OnRemoveItem(int connection_id, const string16& key,
+ void OnRemoveItem(int connection_id, const base::string16& key,
const GURL& page_url);
void OnClear(int connection_id, const GURL& page_url);
void OnFlushMessages();
@@ -66,14 +66,14 @@ class DOMStorageMessageFilter
// sends events back to our renderer process.
virtual void OnDOMStorageItemSet(
const DOMStorageArea* area,
- const string16& key,
- const string16& new_value,
+ const base::string16& key,
+ const base::string16& new_value,
const base::NullableString16& old_value,
const GURL& page_url) OVERRIDE;
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) OVERRIDE;
virtual void OnDOMStorageAreaCleared(
const DOMStorageArea* area,
« no previous file with comments | « content/browser/devtools/worker_devtools_manager.cc ('k') | content/browser/dom_storage/dom_storage_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698