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

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

Issue 1738553002: [ABANDONED] Move multipart/x-mixed-replace related code to ImageResource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@multipart-cleanup-2
Patch Set: Created 4 years, 9 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 ScriptResource::~ScriptResource() 60 ScriptResource::~ScriptResource()
61 { 61 {
62 } 62 }
63 63
64 void ScriptResource::didAddClient(ResourceClient* client) 64 void ScriptResource::didAddClient(ResourceClient* client)
65 { 65 {
66 ASSERT(ScriptResourceClient::isExpectedType(client)); 66 ASSERT(ScriptResourceClient::isExpectedType(client));
67 Resource::didAddClient(client); 67 Resource::didAddClient(client);
68 } 68 }
69 69
70 void ScriptResource::appendDataInternal(const char* data, size_t length) 70 void ScriptResource::appendData(const char* data, size_t length)
71 { 71 {
72 Resource::appendDataInternal(data, length); 72 Resource::appendData(data, length);
73 ResourceClientWalker<ScriptResourceClient> walker(m_clients); 73 ResourceClientWalker<ScriptResourceClient> walker(m_clients);
74 while (ScriptResourceClient* client = walker.next()) 74 while (ScriptResourceClient* client = walker.next())
75 client->notifyAppendData(this); 75 client->notifyAppendData(this);
76 } 76 }
77 77
78 void ScriptResource::onMemoryDump(WebMemoryDumpLevelOfDetail levelOfDetail, WebP rocessMemoryDump* memoryDump) const 78 void ScriptResource::onMemoryDump(WebMemoryDumpLevelOfDetail levelOfDetail, WebP rocessMemoryDump* memoryDump) const
79 { 79 {
80 Resource::onMemoryDump(levelOfDetail, memoryDump); 80 Resource::onMemoryDump(levelOfDetail, memoryDump);
81 const String name = getMemoryDumpName() + "/decoded_script"; 81 const String name = getMemoryDumpName() + "/decoded_script";
82 auto dump = memoryDump->createMemoryAllocatorDump(name); 82 auto dump = memoryDump->createMemoryAllocatorDump(name);
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 } 119 }
120 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque st) const 120 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque st) const
121 { 121 {
122 if (request.integrityMetadata().isEmpty()) 122 if (request.integrityMetadata().isEmpty())
123 return false; 123 return false;
124 124
125 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM etadata()); 125 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM etadata());
126 } 126 }
127 127
128 } // namespace blink 128 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ScriptResource.h ('k') | third_party/WebKit/Source/core/html/ImageDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698