Chromium Code Reviews| OLD | NEW |
|---|---|
| (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/copresence/rpc/rpc_handler.h" | |
| 6 | |
| 7 #include "base/bind.h" | |
| 8 #include "components/copresence/interface/copresence_delegate.h" | |
| 9 #include "components/copresence/interface/whispernet_client.h" | |
| 10 #include "components/copresence/proto/data.pb.h" | |
| 11 #include "components/copresence/proto/rpcs.pb.h" | |
| 12 | |
| 13 namespace copresence { | |
| 14 | |
| 15 RpcHandler::RpcHandler(CopresenceDelegate* delegate, | |
| 16 SuccessCallback init_done_callback) { | |
| 17 } | |
| 18 | |
| 19 RpcHandler::~RpcHandler() { | |
| 20 } | |
| 21 | |
| 22 void RpcHandler::SendReportRequest( | |
| 23 scoped_ptr<copresence::ReportRequest> request) { | |
| 24 } | |
| 25 | |
| 26 void RpcHandler::SendReportRequest( | |
| 27 scoped_ptr<copresence::ReportRequest> /* request */, | |
|
jochen (gone - plz use gerrit)
2014/07/30 09:29:00
nit. unused parameters should still have names
rkc
2014/07/30 10:16:45
Done.
| |
| 28 const std::string& /* app_id */, | |
| 29 const StatusCallback& /* status_callback */) { | |
| 30 } | |
| 31 | |
| 32 void RpcHandler::ReportTokens(copresence::TokenMedium /* medium */, | |
| 33 const std::vector<std::string>& /* tokens */) { | |
| 34 } | |
| 35 | |
| 36 void RpcHandler::ConnectToWhispernet( | |
| 37 WhispernetClient* /* whispernet_client */) { | |
| 38 } | |
| 39 | |
| 40 void RpcHandler::DisconnectFromWhispernet() { | |
| 41 } | |
| 42 | |
| 43 } // namespace copresence | |
| OLD | NEW |