| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 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 "google_apis/cup/client_update_protocol.h" | |
| 6 | |
| 7 #include "base/logging.h" | |
| 8 | |
| 9 ClientUpdateProtocol::~ClientUpdateProtocol() {} | |
| 10 | |
| 11 bool ClientUpdateProtocol::LoadPublicKey(const base::StringPiece& public_key) { | |
| 12 NOTIMPLEMENTED(); | |
| 13 return false; | |
| 14 } | |
| 15 | |
| 16 size_t ClientUpdateProtocol::PublicKeyLength() { | |
| 17 NOTIMPLEMENTED(); | |
| 18 return 0; | |
| 19 } | |
| 20 | |
| 21 bool ClientUpdateProtocol::EncryptKeySource( | |
| 22 const std::vector<uint8>& key_source) { | |
| 23 NOTIMPLEMENTED(); | |
| 24 return false; | |
| 25 } | |
| 26 | |
| 27 | |
| OLD | NEW |