Add testing/scripts/OWNERS
[chromium-blink-merge.git] / extensions / browser / api / cast_channel / cast_auth_util_openssl.cc
blob3ebceed1f107a848a36cfdeb2424c08e2592e85e
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.
5 #include "extensions/browser/api/cast_channel/cast_auth_util.h"
7 #include "base/logging.h"
9 namespace extensions {
10 namespace core_api {
11 namespace cast_channel {
13 AuthResult AuthenticateChallengeReply(const CastMessage& challenge_reply,
14 const std::string& peer_cert) {
15 NOTREACHED();
16 return AuthResult();
19 } // namespace cast_channel
20 } // namespace core_api
21 } // namespace extensions