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

Side by Side Diff: third_party/WebKit/Source/core/fetch/ScriptResource.cpp

Issue 2130683002: [Experiment] purge-and-suspend Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org) 3 Copyright (C) 2001 Dirk Mueller (mueller@kde.org)
4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org) 4 Copyright (C) 2002 Waldo Bastian (bastian@kde.org)
5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 5 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
6 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 7
8 This library is free software; you can redistribute it and/or 8 This library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public 9 modify it under the terms of the GNU Library General Public
10 License as published by the Free Software Foundation; either 10 License as published by the Free Software Foundation; either
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 m_integrityDisposition = disposition; 114 m_integrityDisposition = disposition;
115 } 115 }
116 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque st) const 116 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque st) const
117 { 117 {
118 if (request.integrityMetadata().isEmpty()) 118 if (request.integrityMetadata().isEmpty())
119 return false; 119 return false;
120 120
121 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM etadata()); 121 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM etadata());
122 } 122 }
123 123
124 void ScriptResource::destroyDecodedDataIfPossible()
125 {
126 ResourceClientWalker<ScriptResourceClient> walker(clients());
127 while (ScriptResourceClient* client = walker.next())
128 client->notifyCancelStreamingTask(this);
129 }
130
124 } // namespace blink 131 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698