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

Unified Diff: components/proximity_auth/wire_message.cc

Issue 585743004: [Easy Unlock] Port the BluetoothConnection class to native code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Save references to OnReceive() callbacks Created 6 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
« no previous file with comments | « components/proximity_auth/wire_message.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/wire_message.cc
diff --git a/components/proximity_auth/wire_message.cc b/components/proximity_auth/wire_message.cc
index 678014dd008b942d7b46eedeee898e65d1343990..646d0b0182022ceb8a953b778efa234039863c88 100644
--- a/components/proximity_auth/wire_message.cc
+++ b/components/proximity_auth/wire_message.cc
@@ -111,6 +111,11 @@ scoped_ptr<WireMessage> WireMessage::Deserialize(
return scoped_ptr<WireMessage>(new WireMessage(permit_id, payload));
}
+std::string WireMessage::Serialize() const {
+ // TODO(isherman): Implement.
+ return "This method is not yet implemented.";
+}
+
WireMessage::WireMessage(const std::string& permit_id,
const std::string& payload)
: permit_id_(permit_id),
« no previous file with comments | « components/proximity_auth/wire_message.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698