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

Unified Diff: content/child/db_message_filter.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/child/db_message_filter.h ('k') | content/child/indexed_db/indexed_db_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/db_message_filter.cc
diff --git a/content/child/db_message_filter.cc b/content/child/db_message_filter.cc
index 93fe88513f312c217e0e2778ad49c84864081870..f50d080b8d885a1bd55321f922f80961d130620f 100644
--- a/content/child/db_message_filter.cc
+++ b/content/child/db_message_filter.cc
@@ -31,7 +31,7 @@ bool DBMessageFilter::OnMessageReceived(const IPC::Message& message) {
}
void DBMessageFilter::OnDatabaseUpdateSize(const std::string& origin_identifier,
- const string16& database_name,
+ const base::string16& database_name,
int64 database_size) {
blink::WebDatabase::updateDatabaseSize(
WebString::fromUTF8(origin_identifier), database_name, database_size);
@@ -52,7 +52,7 @@ void DBMessageFilter::OnDatabaseResetSpaceAvailable(
void DBMessageFilter::OnDatabaseCloseImmediately(
const std::string& origin_identifier,
- const string16& database_name) {
+ const base::string16& database_name) {
blink::WebDatabase::closeDatabaseImmediately(
WebString::fromUTF8(origin_identifier), database_name);
}
« no previous file with comments | « content/child/db_message_filter.h ('k') | content/child/indexed_db/indexed_db_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698