| Index: chrome/browser/debugger/extension_ports_remote_service.cc
|
| diff --git a/chrome/browser/debugger/extension_ports_remote_service.cc b/chrome/browser/debugger/extension_ports_remote_service.cc
|
| index 1f8247ba00fc2ee0932d5976d3738d0866d93fb2..711e3f844100da6ad84657082dc5fd152b5aad65 100644
|
| --- a/chrome/browser/debugger/extension_ports_remote_service.cc
|
| +++ b/chrome/browser/debugger/extension_ports_remote_service.cc
|
| @@ -174,7 +174,7 @@ void ExtensionPortsRemoteService::HandleMessage(
|
| }
|
|
|
| int destination = -1;
|
| - if (destinationString.size() != 0)
|
| + if (!destinationString.empty())
|
| base::StringToInt(destinationString, &destination);
|
|
|
| if (command == kConnect) {
|
|
|