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

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

Issue 2251893002: Add destroyDecodedDataIfPossible to ScriptResource to stop ScriptStreaming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 } 64 }
65 65
66 void ScriptResource::appendData(const char* data, size_t length) 66 void ScriptResource::appendData(const char* data, size_t length)
67 { 67 {
68 Resource::appendData(data, length); 68 Resource::appendData(data, length);
69 ResourceClientWalker<ScriptResourceClient> walker(clients()); 69 ResourceClientWalker<ScriptResourceClient> walker(clients());
70 while (ScriptResourceClient* client = walker.next()) 70 while (ScriptResourceClient* client = walker.next())
71 client->notifyAppendData(this); 71 client->notifyAppendData(this);
72 } 72 }
73 73
74 void ScriptResource::destroyDecodedDataIfPossible()
marja 2016/08/17 08:37:40 ... and especially here... destroyDecodedDataIfPos
75 {
76 ResourceClientWalker<ScriptResourceClient> walker(clients());
77 while (ScriptResourceClient* client = walker.next())
78 client->notifyCancel(this);
79 }
80
74 void ScriptResource::onMemoryDump(WebMemoryDumpLevelOfDetail levelOfDetail, WebP rocessMemoryDump* memoryDump) const 81 void ScriptResource::onMemoryDump(WebMemoryDumpLevelOfDetail levelOfDetail, WebP rocessMemoryDump* memoryDump) const
75 { 82 {
76 Resource::onMemoryDump(levelOfDetail, memoryDump); 83 Resource::onMemoryDump(levelOfDetail, memoryDump);
77 const String name = getMemoryDumpName() + "/decoded_script"; 84 const String name = getMemoryDumpName() + "/decoded_script";
78 auto dump = memoryDump->createMemoryAllocatorDump(name); 85 auto dump = memoryDump->createMemoryAllocatorDump(name);
79 dump->addScalar("size", "bytes", m_script.charactersSizeInBytes()); 86 dump->addScalar("size", "bytes", m_script.charactersSizeInBytes());
80 memoryDump->addSuballocation(dump->guid(), String(WTF::Partitions::kAllocate dObjectPoolName)); 87 memoryDump->addSuballocation(dump->guid(), String(WTF::Partitions::kAllocate dObjectPoolName));
81 } 88 }
82 89
83 const String& ScriptResource::script() 90 const String& ScriptResource::script()
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 } 122 }
116 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque st) const 123 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque st) const
117 { 124 {
118 if (request.integrityMetadata().isEmpty()) 125 if (request.integrityMetadata().isEmpty())
119 return false; 126 return false;
120 127
121 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM etadata()); 128 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM etadata());
122 } 129 }
123 130
124 } // namespace blink 131 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698