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

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: rebase upto conflicting r199893 Created 5 years, 4 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 7ed717b341d7fa09683b844f53fda49b0c84ffe0..8bfe3025b4e56008e9019fbf27383cb8395623c6 100644
--- a/Source/modules/bluetooth/Bluetooth.cpp
+++ b/Source/modules/bluetooth/Bluetooth.cpp
@@ -75,7 +75,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