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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/Resource.cpp

Issue 2866093002: blink: m_foo -> foo_ in logging strings. (Closed)
Patch Set: rebase Created 3 years, 7 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 | « third_party/WebKit/Source/platform/audio/PushPullFIFO.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/loader/fetch/Resource.cpp
diff --git a/third_party/WebKit/Source/platform/loader/fetch/Resource.cpp b/third_party/WebKit/Source/platform/loader/fetch/Resource.cpp
index a234bd4b449c1fd29c1032fc9dd7556ef4b549fd..8d71536aec303906ec858150b97177bf42a4e1e3 100644
--- a/third_party/WebKit/Source/platform/loader/fetch/Resource.cpp
+++ b/third_party/WebKit/Source/platform/loader/fetch/Resource.cpp
@@ -274,7 +274,7 @@ Resource::ResourceCallback::ResourceCallback() {}
void Resource::ResourceCallback::Schedule(Resource* resource) {
if (!task_handle_.IsActive()) {
// WTF::unretained(this) is safe because a posted task is canceled when
- // |m_taskHandle| is destroyed on the dtor of this ResourceCallback.
+ // |task_handle_| is destroyed on the dtor of this ResourceCallback.
task_handle_ =
Platform::Current()
->CurrentThread()
@@ -638,12 +638,12 @@ String Resource::ReasonNotDeletable() const {
if (loader_) {
if (!builder.IsEmpty())
builder.Append(' ');
- builder.Append("m_loader");
+ builder.Append("loader_");
}
if (preload_count_) {
if (!builder.IsEmpty())
builder.Append(' ');
- builder.Append("m_preloadCount(");
+ builder.Append("preload_count_(");
builder.AppendNumber(preload_count_);
builder.Append(')');
}
@@ -808,7 +808,7 @@ void Resource::FinishPendingClients() {
// back.
//
// Handle case (1) by saving a list of clients to notify. A separate list also
- // ensure a client is either in m_clients or m_clientsAwaitingCallback.
+ // ensure a client is either in cliens_ or clients_awaiting_callback_.
HeapVector<Member<ResourceClient>> clients_to_notify;
CopyToVector(clients_awaiting_callback_, clients_to_notify);
@@ -820,7 +820,7 @@ void Resource::FinishPendingClients() {
// When revalidation starts after waiting clients are scheduled and
// before they are added here. In such cases, we just add the clients
- // to |m_clients| without didAddClient(), as in Resource::addClient().
+ // to |clients_| without DidAddClient(), as in Resource::AddClient().
if (!is_revalidating_)
DidAddClient(client);
}
« no previous file with comments | « third_party/WebKit/Source/platform/audio/PushPullFIFO.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698