| Index: third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
|
| diff --git a/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp b/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
|
| index a5eae6c5bf861db7dc1fd4028a4489e01506f60b..272003dcdb341ee64d21d68cbe778c9610162062 100644
|
| --- a/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
|
| +++ b/third_party/WebKit/Source/platform/loader/fetch/ResourceFetcher.cpp
|
| @@ -1054,12 +1054,12 @@ void ResourceFetcher::clearContext() {
|
| m_context.clear();
|
| }
|
|
|
| -int ResourceFetcher::requestCount() const {
|
| +int ResourceFetcher::blockingRequestCount() const {
|
| return m_loaders.size();
|
| }
|
|
|
| -bool ResourceFetcher::hasPendingRequest() const {
|
| - return m_loaders.size() > 0 || m_nonBlockingLoaders.size() > 0;
|
| +int ResourceFetcher::nonblockingRequestCount() const {
|
| + return m_nonBlockingLoaders.size();
|
| }
|
|
|
| void ResourceFetcher::preloadStarted(Resource* resource) {
|
|
|