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

Side by Side Diff: chromecast/browser/cast_network_delegate_simple.cc

Issue 2898573002: Refactor client cert private key handling. (Closed)
Patch Set: removed no longer needed forward declaration Created 3 years, 6 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 | « chromecast/browser/cast_network_delegate.h ('k') | content/browser/loader/resource_loader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chromecast/browser/cast_network_delegate.h" 5 #include "chromecast/browser/cast_network_delegate.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "url/gurl.h" 8 #include "url/gurl.h"
9 9
10 namespace chromecast { 10 namespace chromecast {
(...skipping 21 matching lines...) Expand all
32 // static 32 // static
33 CastNetworkDelegate* CastNetworkDelegate::Create() { 33 CastNetworkDelegate* CastNetworkDelegate::Create() {
34 return new CastNetworkDelegateSimple(); 34 return new CastNetworkDelegateSimple();
35 } 35 }
36 36
37 // static 37 // static
38 net::X509Certificate* CastNetworkDelegate::DeviceCert() { 38 net::X509Certificate* CastNetworkDelegate::DeviceCert() {
39 return NULL; 39 return NULL;
40 } 40 }
41 41
42 // static
43 net::SSLPrivateKey* CastNetworkDelegate::DeviceKey() {
44 return NULL;
45 }
46
42 } // namespace shell 47 } // namespace shell
43 } // namespace chromecast 48 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/browser/cast_network_delegate.h ('k') | content/browser/loader/resource_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698