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

Unified Diff: extensions/browser/api/bluetooth_socket/bluetooth_socket_api.cc

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: win fix Created 4 years, 3 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: extensions/browser/api/bluetooth_socket/bluetooth_socket_api.cc
diff --git a/extensions/browser/api/bluetooth_socket/bluetooth_socket_api.cc b/extensions/browser/api/bluetooth_socket/bluetooth_socket_api.cc
index 1aa75322862e99a797123862fdaddc7017136006..49d61e37e143da5ff23a7758c6252e4838e8c2e7 100644
--- a/extensions/browser/api/bluetooth_socket/bluetooth_socket_api.cc
+++ b/extensions/browser/api/bluetooth_socket/bluetooth_socket_api.cc
@@ -606,8 +606,7 @@ void BluetoothSocketSendFunction::AsyncWorkStart() {
return;
}
- socket->Send(io_buffer_,
- io_buffer_size_,
+ socket->Send(io_buffer_, static_cast<int>(io_buffer_size_),
Devlin 2016/09/13 17:10:49 ? This seems orthogonal to this CL.
Rahul Chaturvedi 2016/09/13 20:33:49 So these are actually real build errors - which fo
base::Bind(&BluetoothSocketSendFunction::OnSuccess, this),
base::Bind(&BluetoothSocketSendFunction::OnError, this));
}

Powered by Google App Engine
This is Rietveld 408576698