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

Unified Diff: Source/modules/webdatabase/QuotaTracker.cpp

Issue 469773002: Cleanup blink:: prefix usage in Source/core/modules/[mediasource/*.cpp to websockets/*.cpp] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « Source/modules/webdatabase/DatabaseTracker.cpp ('k') | Source/modules/webdatabase/SQLTransactionClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webdatabase/QuotaTracker.cpp
diff --git a/Source/modules/webdatabase/QuotaTracker.cpp b/Source/modules/webdatabase/QuotaTracker.cpp
index 4048148a258b9e06aa80e3d77a5b2002e2a05013..74c3ec046b8221aad02b4b933b59ffa6e878e78e 100644
--- a/Source/modules/webdatabase/QuotaTracker.cpp
+++ b/Source/modules/webdatabase/QuotaTracker.cpp
@@ -47,7 +47,7 @@ void QuotaTracker::getDatabaseSizeAndSpaceAvailableToOrigin(
const String& originIdentifier, const String& databaseName,
unsigned long long* databaseSize, unsigned long long* spaceAvailable)
{
- // Extra scope to unlock prior to potentially calling blink::Platform.
+ // Extra scope to unlock prior to potentially calling Platform.
{
MutexLocker lockData(m_dataGuard);
ASSERT(m_databaseSizes.contains(originIdentifier));
@@ -62,7 +62,7 @@ void QuotaTracker::getDatabaseSizeAndSpaceAvailableToOrigin(
}
// The embedder hasn't pushed this value to us, so we pull it as needed.
- *spaceAvailable = blink::Platform::current()->databaseGetSpaceAvailableForOrigin(originIdentifier);
+ *spaceAvailable = Platform::current()->databaseGetSpaceAvailableForOrigin(originIdentifier);
}
void QuotaTracker::updateDatabaseSize(
« no previous file with comments | « Source/modules/webdatabase/DatabaseTracker.cpp ('k') | Source/modules/webdatabase/SQLTransactionClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698