OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 for (Vector<String>::const_iterator it = urls.begin(); it != urls.end(); ++i
t) | 206 for (Vector<String>::const_iterator it = urls.begin(); it != urls.end(); ++i
t) |
207 getExecutionContext()->removeURLFromMemoryCache(completeURL(*it)); | 207 getExecutionContext()->removeURLFromMemoryCache(completeURL(*it)); |
208 WorkerGlobalScope::importScripts(urls, exceptionState); | 208 WorkerGlobalScope::importScripts(urls, exceptionState); |
209 } | 209 } |
210 | 210 |
211 CachedMetadataHandler* ServiceWorkerGlobalScope::createWorkerScriptCachedMetadat
aHandler(const KURL& scriptURL, const Vector<char>* metaData) | 211 CachedMetadataHandler* ServiceWorkerGlobalScope::createWorkerScriptCachedMetadat
aHandler(const KURL& scriptURL, const Vector<char>* metaData) |
212 { | 212 { |
213 return ServiceWorkerScriptCachedMetadataHandler::create(this, scriptURL, met
aData); | 213 return ServiceWorkerScriptCachedMetadataHandler::create(this, scriptURL, met
aData); |
214 } | 214 } |
215 | 215 |
216 void ServiceWorkerGlobalScope::exceptionThrown(const String& errorMessage, std::
unique_ptr<SourceLocation> location) | 216 void ServiceWorkerGlobalScope::exceptionThrown(ErrorEvent* event) |
217 { | 217 { |
218 WorkerGlobalScope::exceptionThrown(errorMessage, location->clone()); | 218 WorkerGlobalScope::exceptionThrown(event); |
219 if (WorkerThreadDebugger* debugger = WorkerThreadDebugger::from(thread()->is
olate())) | 219 if (WorkerThreadDebugger* debugger = WorkerThreadDebugger::from(thread()->is
olate())) |
220 debugger->exceptionThrown(errorMessage, std::move(location)); | 220 debugger->exceptionThrown(event); |
221 } | 221 } |
222 | 222 |
223 void ServiceWorkerGlobalScope::scriptLoaded(size_t scriptSize, size_t cachedMeta
dataSize) | 223 void ServiceWorkerGlobalScope::scriptLoaded(size_t scriptSize, size_t cachedMeta
dataSize) |
224 { | 224 { |
225 ++m_scriptCount; | 225 ++m_scriptCount; |
226 m_scriptTotalSize += scriptSize; | 226 m_scriptTotalSize += scriptSize; |
227 m_scriptCachedMetadataTotalSize += cachedMetadataSize; | 227 m_scriptCachedMetadataTotalSize += cachedMetadataSize; |
228 } | 228 } |
229 | 229 |
230 } // namespace blink | 230 } // namespace blink |
OLD | NEW |