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

Unified Diff: Source/modules/bluetooth/Bluetooth.cpp

Issue 1233173002: Have ScriptPromiseResolver on the Oilpan heap always. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: smaller review updates Created 5 years, 5 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
Index: Source/modules/bluetooth/Bluetooth.cpp
diff --git a/Source/modules/bluetooth/Bluetooth.cpp b/Source/modules/bluetooth/Bluetooth.cpp
index 479c62773544f7c6e755dcba592973700d12033b..19ffb2a13a759d83b735bf18473a632ab20449a6 100644
--- a/Source/modules/bluetooth/Bluetooth.cpp
+++ b/Source/modules/bluetooth/Bluetooth.cpp
@@ -69,7 +69,7 @@ ScriptPromise Bluetooth::requestDevice(ScriptState* scriptState, const RequestDe
return exceptionState.reject(scriptState);
// Subsequent steps are handled in the browser process.
- RefPtrWillBeRawPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::create(scriptState);
+ ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
ScriptPromise promise = resolver->promise();
webbluetooth->requestDevice(webOptions, new CallbackPromiseAdapter<BluetoothDevice, BluetoothError>(resolver));
return promise;

Powered by Google App Engine
This is Rietveld 408576698