| Index: third_party/WebKit/Source/core/fetch/Resource.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/fetch/Resource.cpp b/third_party/WebKit/Source/core/fetch/Resource.cpp
 | 
| index e5ff92a05d8370dacef1272e2571db1a47ed770e..8968aeca01cac2fd5c0e9d819f85d23ddcf7da6d 100644
 | 
| --- a/third_party/WebKit/Source/core/fetch/Resource.cpp
 | 
| +++ b/third_party/WebKit/Source/core/fetch/Resource.cpp
 | 
| @@ -355,17 +355,12 @@ void Resource::setLoader(ResourceLoader* loader) {
 | 
|  }
 | 
|  
 | 
|  void Resource::checkNotify() {
 | 
| -  notifyClientsInternal(MarkFinishedOption::ShouldMarkFinished);
 | 
| -}
 | 
| -
 | 
| -void Resource::notifyClientsInternal(MarkFinishedOption markFinishedOption) {
 | 
|    if (isLoading())
 | 
|      return;
 | 
|  
 | 
|    ResourceClientWalker<ResourceClient> w(m_clients);
 | 
|    while (ResourceClient* c = w.next()) {
 | 
| -    if (markFinishedOption == MarkFinishedOption::ShouldMarkFinished)
 | 
| -      markClientFinished(c);
 | 
| +    markClientFinished(c);
 | 
|      c->notifyFinished(this);
 | 
|    }
 | 
|  }
 | 
| 
 |