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

Unified Diff: content/renderer/dom_storage/dom_storage_dispatcher.cc

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
« no previous file with comments | « content/renderer/cpp_bound_class_unittest.cc ('k') | content/renderer/external_popup_menu_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/dom_storage/dom_storage_dispatcher.cc
diff --git a/content/renderer/dom_storage/dom_storage_dispatcher.cc b/content/renderer/dom_storage/dom_storage_dispatcher.cc
index 936f21742a36461354d31c5dbbf3fe38ed9cd322..477251c33a9b7c745242f3b1dff2c0e7edc73a58 100644
--- a/content/renderer/dom_storage/dom_storage_dispatcher.cc
+++ b/content/renderer/dom_storage/dom_storage_dispatcher.cc
@@ -111,12 +111,12 @@ class DomStorageDispatcher::ProxyImpl : public DOMStorageProxy {
virtual void LoadArea(int connection_id, DOMStorageValuesMap* values,
bool* send_log_get_messages,
const CompletionCallback& callback) OVERRIDE;
- virtual void SetItem(int connection_id, const string16& key,
- const string16& value, const GURL& page_url,
+ virtual void SetItem(int connection_id, const base::string16& key,
+ const base::string16& value, const GURL& page_url,
const CompletionCallback& callback) OVERRIDE;
- virtual void LogGetItem(int connection_id, const string16& key,
+ virtual void LogGetItem(int connection_id, const base::string16& key,
const base::NullableString16& value) OVERRIDE;
- virtual void RemoveItem(int connection_id, const string16& key,
+ virtual void RemoveItem(int connection_id, const base::string16& key,
const GURL& page_url,
const CompletionCallback& callback) OVERRIDE;
virtual void ClearArea(int connection_id,
@@ -244,8 +244,8 @@ void DomStorageDispatcher::ProxyImpl::LoadArea(
}
void DomStorageDispatcher::ProxyImpl::SetItem(
- 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,
const CompletionCallback& callback) {
PushPendingCallback(callback);
throttling_filter_->SendThrottled(new DOMStorageHostMsg_SetItem(
@@ -253,13 +253,13 @@ void DomStorageDispatcher::ProxyImpl::SetItem(
}
void DomStorageDispatcher::ProxyImpl::LogGetItem(
- int connection_id, const string16& key,
+ int connection_id, const base::string16& key,
const base::NullableString16& value) {
sender_->Send(new DOMStorageHostMsg_LogGetItem(connection_id, key, value));
}
void DomStorageDispatcher::ProxyImpl::RemoveItem(
- int connection_id, const string16& key, const GURL& page_url,
+ int connection_id, const base::string16& key, const GURL& page_url,
const CompletionCallback& callback) {
PushPendingCallback(callback);
throttling_filter_->SendThrottled(new DOMStorageHostMsg_RemoveItem(
« no previous file with comments | « content/renderer/cpp_bound_class_unittest.cc ('k') | content/renderer/external_popup_menu_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698