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

Unified Diff: third_party/WebKit/Source/core/fetch/ScriptResource.cpp

Issue 2148183002: Refactoring: Move some Resource members from protected to private (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
Index: third_party/WebKit/Source/core/fetch/ScriptResource.cpp
diff --git a/third_party/WebKit/Source/core/fetch/ScriptResource.cpp b/third_party/WebKit/Source/core/fetch/ScriptResource.cpp
index bcb2faa12adbc72acd5241f543f18cd61ec7cc84..70bde66b86773d9cd451e68ce28aa8eac9a48146 100644
--- a/third_party/WebKit/Source/core/fetch/ScriptResource.cpp
+++ b/third_party/WebKit/Source/core/fetch/ScriptResource.cpp
@@ -66,7 +66,7 @@ void ScriptResource::didAddClient(ResourceClient* client)
void ScriptResource::appendData(const char* data, size_t length)
{
Resource::appendData(data, length);
- ResourceClientWalker<ScriptResourceClient> walker(m_clients);
+ ResourceClientWalker<ScriptResourceClient> walker(clients());
while (ScriptResourceClient* client = walker.next())
client->notifyAppendData(this);
}
« no previous file with comments | « third_party/WebKit/Source/core/fetch/Resource.cpp ('k') | third_party/WebKit/Source/core/fetch/XSLStyleSheetResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698