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

Unified Diff: Source/modules/geofencing/GeofencingError.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/fetch/ResponseTest.cpp ('k') | Source/modules/geofencing/GeofencingError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geofencing/GeofencingError.h
diff --git a/Source/modules/geofencing/GeofencingError.h b/Source/modules/geofencing/GeofencingError.h
index 643c43c121034c18835ecfd45fc159d83d2101b4..8fc5b5e25a8d247a1363b5437231aa834c6e635b 100644
--- a/Source/modules/geofencing/GeofencingError.h
+++ b/Source/modules/geofencing/GeofencingError.h
@@ -5,12 +5,12 @@
#ifndef GeofencingError_h
#define GeofencingError_h
-#include "core/dom/DOMException.h"
#include "platform/heap/Handle.h"
#include "public/platform/WebGeofencingError.h"
namespace blink {
+class DOMException;
class ScriptPromiseResolver;
class GeofencingError {
@@ -18,7 +18,7 @@ class GeofencingError {
public:
// For CallbackPromiseAdapter.
typedef blink::WebGeofencingError WebType;
- static PassRefPtrWillBeRawPtr<DOMException> take(ScriptPromiseResolver*, WebType* webErrorRaw);
+ static DOMException* take(ScriptPromiseResolver*, WebType* webErrorRaw);
static void dispose(WebType* webErrorRaw);
private:
« no previous file with comments | « Source/modules/fetch/ResponseTest.cpp ('k') | Source/modules/geofencing/GeofencingError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698