| 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 579a3667325526cc532e4db23babe049d21f3385..919993c5040d288460ec5d2ef7b53eeac0ee7fce 100644
|
| --- a/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/Resource.cpp
|
| @@ -729,14 +729,9 @@ void Resource::didRemoveClientOrObserver()
|
| // "no-store: ... MUST make a best-effort attempt to remove the information from volatile storage as promptly as possible"
|
| // "... History buffers MAY store such responses as part of their normal operation."
|
| // We allow non-secure content to be reused in history, but we do not allow secure content to be reused.
|
| - if (hasCacheControlNoStoreHeader() && url().protocolIs("https")) {
|
| + if (hasCacheControlNoStoreHeader() && url().protocolIs("https"))
|
| memoryCache()->remove(this);
|
| - memoryCache()->prune();
|
| - } else {
|
| - memoryCache()->prune(this);
|
| - }
|
| }
|
| - // This object may be dead here.
|
| }
|
|
|
| void Resource::allClientsAndObserversRemoved()
|
|
|