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

Unified Diff: Source/modules/cachestorage/Cache.h

Issue 1107793002: Oilpan: have DOMException be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/bluetooth/BluetoothError.cpp ('k') | Source/modules/cachestorage/Cache.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/cachestorage/Cache.h
diff --git a/Source/modules/cachestorage/Cache.h b/Source/modules/cachestorage/Cache.h
index 0abe433ee8eb97cebc40dade40bfcd5831c9956d..66674891ad772dcd0e8d28dce333a472d6833d54 100644
--- a/Source/modules/cachestorage/Cache.h
+++ b/Source/modules/cachestorage/Cache.h
@@ -8,7 +8,6 @@
#include "bindings/core/v8/ScriptPromise.h"
#include "bindings/core/v8/ScriptWrappable.h"
#include "bindings/modules/v8/UnionTypesModules.h"
-#include "core/dom/DOMException.h"
#include "modules/ModulesExport.h"
#include "modules/cachestorage/CacheQueryOptions.h"
#include "modules/fetch/GlobalFetch.h"
@@ -22,6 +21,7 @@
namespace blink {
+class DOMException;
class ExceptionState;
class Response;
class Request;
@@ -45,7 +45,7 @@ public:
ScriptPromise keys(ScriptState*, ExceptionState&);
ScriptPromise keys(ScriptState*, const RequestInfo&, const CacheQueryOptions&, ExceptionState&);
- static PassRefPtrWillBeRawPtr<DOMException> domExceptionForCacheError(WebServiceWorkerCacheError);
+ static DOMException* domExceptionForCacheError(WebServiceWorkerCacheError);
static WebServiceWorkerCache::QueryParams toWebQueryParams(const CacheQueryOptions&);
« no previous file with comments | « Source/modules/bluetooth/BluetoothError.cpp ('k') | Source/modules/cachestorage/Cache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698