| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Motorola Mobility Inc. | 3 * Copyright (C) 2012 Motorola Mobility Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/dom/DOMURL.h" | 28 #include "core/dom/DOMURL.h" |
| 29 | 29 |
| 30 #include "bindings/v8/ExceptionMessages.h" | 30 #include "bindings/v8/ExceptionMessages.h" |
| 31 #include "bindings/v8/ExceptionState.h" | 31 #include "bindings/v8/ExceptionState.h" |
| 32 #include "core/dom/ExceptionCode.h" | 32 #include "core/dom/ExceptionCode.h" |
| 33 #include "core/dom/ExecutionContext.h" | 33 #include "core/dom/ExecutionContext.h" |
| 34 #include "core/fetch/MemoryCache.h" | 34 #include "core/fetch/MemoryCache.h" |
| 35 #include "core/fileapi/Blob.h" | 35 #include "core/fileapi/Blob.h" |
| 36 #include "core/fileapi/BlobURL.h" | |
| 37 #include "core/html/PublicURLManager.h" | 36 #include "core/html/PublicURLManager.h" |
| 37 #include "platform/blob/BlobURL.h" |
| 38 #include "weborigin/SecurityOrigin.h" | 38 #include "weborigin/SecurityOrigin.h" |
| 39 #include "wtf/MainThread.h" | 39 #include "wtf/MainThread.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 DOMURL::DOMURL(const String& url, const KURL& base, ExceptionState& es) | 43 DOMURL::DOMURL(const String& url, const KURL& base, ExceptionState& es) |
| 44 { | 44 { |
| 45 ScriptWrappable::init(this); | 45 ScriptWrappable::init(this); |
| 46 if (!base.isValid()) | 46 if (!base.isValid()) |
| 47 es.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("
URL", "Invalid base URL")); | 47 es.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("
URL", "Invalid base URL")); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 { | 85 { |
| 86 if (!executionContext) | 86 if (!executionContext) |
| 87 return; | 87 return; |
| 88 | 88 |
| 89 KURL url(KURL(), urlString); | 89 KURL url(KURL(), urlString); |
| 90 MemoryCache::removeURLFromCache(executionContext, url); | 90 MemoryCache::removeURLFromCache(executionContext, url); |
| 91 executionContext->publicURLManager().revoke(url); | 91 executionContext->publicURLManager().revoke(url); |
| 92 } | 92 } |
| 93 | 93 |
| 94 } // namespace WebCore | 94 } // namespace WebCore |
| OLD | NEW |