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

Unified Diff: content/child/db_message_filter.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/database_util.cc ('k') | content/child/fileapi/webfilesystem_impl.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 6fc8103f7da0596fc28932de227f8271e6b39f6b..93fe88513f312c217e0e2778ad49c84864081870 100644
--- a/content/child/db_message_filter.cc
+++ b/content/child/db_message_filter.cc
@@ -8,7 +8,7 @@
#include "third_party/WebKit/public/platform/WebString.h"
#include "third_party/WebKit/public/web/WebDatabase.h"
-using WebKit::WebString;
+using blink::WebString;
namespace content {
@@ -33,27 +33,27 @@ bool DBMessageFilter::OnMessageReceived(const IPC::Message& message) {
void DBMessageFilter::OnDatabaseUpdateSize(const std::string& origin_identifier,
const string16& database_name,
int64 database_size) {
- WebKit::WebDatabase::updateDatabaseSize(
+ blink::WebDatabase::updateDatabaseSize(
WebString::fromUTF8(origin_identifier), database_name, database_size);
}
void DBMessageFilter::OnDatabaseUpdateSpaceAvailable(
const std::string& origin_identifier,
int64 space_available) {
- WebKit::WebDatabase::updateSpaceAvailable(
+ blink::WebDatabase::updateSpaceAvailable(
WebString::fromUTF8(origin_identifier), space_available);
}
void DBMessageFilter::OnDatabaseResetSpaceAvailable(
const std::string& origin_identifier) {
- WebKit::WebDatabase::resetSpaceAvailable(
+ blink::WebDatabase::resetSpaceAvailable(
WebString::fromUTF8(origin_identifier));
}
void DBMessageFilter::OnDatabaseCloseImmediately(
const std::string& origin_identifier,
const string16& database_name) {
- WebKit::WebDatabase::closeDatabaseImmediately(
+ blink::WebDatabase::closeDatabaseImmediately(
WebString::fromUTF8(origin_identifier), database_name);
}
« no previous file with comments | « content/child/database_util.cc ('k') | content/child/fileapi/webfilesystem_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698