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

Side by Side Diff: google_apis/cup/client_update_protocol_openssl.cc

Issue 432953002: Remove CUP from google_apis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
OLDNEW
(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
OLDNEW
« no previous file with comments | « google_apis/cup/client_update_protocol_nss.cc ('k') | google_apis/cup/client_update_protocol_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698