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

Unified Diff: device/bluetooth/bluetooth_socket_bluez.cc

Issue 1553623002: Remove random lonely semicolons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix formatting Created 5 years 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: device/bluetooth/bluetooth_socket_bluez.cc
diff --git a/device/bluetooth/bluetooth_socket_bluez.cc b/device/bluetooth/bluetooth_socket_bluez.cc
index 5a82ef17a4588430261f9e4f245ab1cbb5183cb9..5365aca14c66fc1939169d1eeb82187009c52c78 100644
--- a/device/bluetooth/bluetooth_socket_bluez.cc
+++ b/device/bluetooth/bluetooth_socket_bluez.cc
@@ -457,14 +457,12 @@ void BluetoothSocketBlueZ::DoNewConnection(
LOG(WARNING) << uuid_.canonical_value() << " :" << fd->value()
<< ": Invalid file descriptor received from Bluetooth Daemon.";
ui_task_runner()->PostTask(FROM_HERE, base::Bind(callback, REJECTED));
- ;
return;
}
if (tcp_socket()) {
LOG(WARNING) << uuid_.canonical_value() << ": Already connected";
ui_task_runner()->PostTask(FROM_HERE, base::Bind(callback, REJECTED));
- ;
return;
}
@@ -478,7 +476,6 @@ void BluetoothSocketBlueZ::DoNewConnection(
LOG(WARNING) << uuid_.canonical_value() << ": Error adopting socket: "
<< std::string(net::ErrorToString(net_result));
ui_task_runner()->PostTask(FROM_HERE, base::Bind(callback, REJECTED));
- ;
return;
}
@@ -486,7 +483,6 @@ void BluetoothSocketBlueZ::DoNewConnection(
<< ": Taking descriptor, confirming success.";
fd->TakeValue();
ui_task_runner()->PostTask(FROM_HERE, base::Bind(callback, SUCCESS));
- ;
}
void BluetoothSocketBlueZ::OnNewConnection(

Powered by Google App Engine
This is Rietveld 408576698