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

Side by Side Diff: components/proximity_auth/wire_message.cc

Issue 538843002: [EasyUnlock] Port Connection class to native code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android test compile failures 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 unified diff | Download patch
« no previous file with comments | « components/proximity_auth/wire_message.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/proximity_auth/wire_message.h"
6
7 namespace proximity_auth {
8
9 WireMessage::~WireMessage() {
10 }
11
12 // static
13 bool WireMessage::IsCompleteMessage(const std::string& serialized_message) {
14 // TODO(isherman): Implement.
15 return false;
16 }
17
18 // static
19 scoped_ptr<WireMessage> WireMessage::Deserialize(
20 const std::string& serialized_message) {
21 // TODO(isherman): Implement.
22 return scoped_ptr<WireMessage>();
23 }
24
25 WireMessage::WireMessage() {
26 // TODO(isherman): Implement.
27 }
28
29 } // namespace proximity_auth
OLDNEW
« 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