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

Unified Diff: Source/modules/bluetooth/BluetoothError.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/background_sync/SyncError.cpp ('k') | Source/modules/bluetooth/BluetoothError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/bluetooth/BluetoothError.h
diff --git a/Source/modules/bluetooth/BluetoothError.h b/Source/modules/bluetooth/BluetoothError.h
index 279103031b9cc63887608553660ceccbcfab643a..d1e982f292bdffa3c015bb673c6b8b527c30cc41 100644
--- a/Source/modules/bluetooth/BluetoothError.h
+++ b/Source/modules/bluetooth/BluetoothError.h
@@ -5,11 +5,11 @@
#ifndef BluetoothError_h
#define BluetoothError_h
-#include "core/dom/DOMException.h"
#include "platform/heap/Handle.h"
namespace blink {
+class DOMException;
class ScriptPromiseResolver;
struct WebBluetoothError;
@@ -20,7 +20,7 @@ class BluetoothError {
public:
// Interface required by CallbackPromiseAdapter:
typedef WebBluetoothError WebType;
- static PassRefPtrWillBeRawPtr<DOMException> take(ScriptPromiseResolver*, WebBluetoothError*);
+ static DOMException* take(ScriptPromiseResolver*, WebBluetoothError*);
static void dispose(blink::WebBluetoothError*);
private:
« no previous file with comments | « Source/modules/background_sync/SyncError.cpp ('k') | Source/modules/bluetooth/BluetoothError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698