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

Unified Diff: device/serial/data_sink_receiver.cc

Issue 1554443003: Stop linking in the old Mojo EDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge and fix new flaky test Created 4 years, 11 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
« no previous file with comments | « device/serial/data_sink_receiver.h ('k') | device/test/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/data_sink_receiver.cc
diff --git a/device/serial/data_sink_receiver.cc b/device/serial/data_sink_receiver.cc
index e1d2b9c28a3a487f1ca4ed5cb6b94ec997ec6f51..f430168de139690f200e3e92b857fff92e33716c 100644
--- a/device/serial/data_sink_receiver.cc
+++ b/device/serial/data_sink_receiver.cc
@@ -72,13 +72,13 @@ DataSinkReceiver::DataSinkReceiver(
const ReadyCallback& ready_callback,
const CancelCallback& cancel_callback,
const ErrorCallback& error_callback)
- : binding_(this, std::move(request)),
- ready_callback_(ready_callback),
+ : ready_callback_(ready_callback),
cancel_callback_(cancel_callback),
error_callback_(error_callback),
current_error_(0),
buffer_in_use_(NULL),
shut_down_(false),
+ binding_(this, std::move(request)),
weak_factory_(this) {
binding_.set_connection_error_handler(
base::Bind(&DataSinkReceiver::OnConnectionError, base::Unretained(this)));
« no previous file with comments | « device/serial/data_sink_receiver.h ('k') | device/test/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698