| OLD | NEW |
| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 ScriptResource::~ScriptResource() | 61 ScriptResource::~ScriptResource() |
| 62 { | 62 { |
| 63 } | 63 } |
| 64 | 64 |
| 65 void ScriptResource::didAddClient(ResourceClient* client) | 65 void ScriptResource::didAddClient(ResourceClient* client) |
| 66 { | 66 { |
| 67 ASSERT(client->resourceClientType() == ScriptResourceClient::expectedType())
; | 67 ASSERT(client->resourceClientType() == ScriptResourceClient::expectedType())
; |
| 68 Resource::didAddClient(client); | 68 Resource::didAddClient(client); |
| 69 } | 69 } |
| 70 | 70 |
| 71 void ScriptResource::appendData(const char* data, unsigned length) | 71 void ScriptResource::appendData(const char* data, size_t length) |
| 72 { | 72 { |
| 73 Resource::appendData(data, length); | 73 Resource::appendData(data, length); |
| 74 ResourceClientWalker<ScriptResourceClient> walker(m_clients); | 74 ResourceClientWalker<ScriptResourceClient> walker(m_clients); |
| 75 while (ScriptResourceClient* client = walker.next()) | 75 while (ScriptResourceClient* client = walker.next()) |
| 76 client->notifyAppendData(this); | 76 client->notifyAppendData(this); |
| 77 } | 77 } |
| 78 | 78 |
| 79 void ScriptResource::onMemoryDump(WebMemoryDumpLevelOfDetail levelOfDetail, WebP
rocessMemoryDump* memoryDump) const | 79 void ScriptResource::onMemoryDump(WebMemoryDumpLevelOfDetail levelOfDetail, WebP
rocessMemoryDump* memoryDump) const |
| 80 { | 80 { |
| 81 Resource::onMemoryDump(levelOfDetail, memoryDump); | 81 Resource::onMemoryDump(levelOfDetail, memoryDump); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque
st) const | 121 bool ScriptResource::mustRefetchDueToIntegrityMetadata(const FetchRequest& reque
st) const |
| 122 { | 122 { |
| 123 if (request.integrityMetadata().isEmpty()) | 123 if (request.integrityMetadata().isEmpty()) |
| 124 return false; | 124 return false; |
| 125 | 125 |
| 126 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM
etadata()); | 126 return !IntegrityMetadata::setsEqual(m_integrityMetadata, request.integrityM
etadata()); |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace blink | 129 } // namespace blink |
| OLD | NEW |