Index: net/ssl/token_binding_nss.cc |
diff --git a/net/ssl/token_binding_nss.cc b/net/ssl/token_binding_nss.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..87cc323aaca4ddbc64a194542370b5a1d5fe051e |
--- /dev/null |
+++ b/net/ssl/token_binding_nss.cc |
@@ -0,0 +1,17 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "token_binding.h" |
+ |
+#include "net/base/net_errors.h" |
+ |
+namespace net { |
+ |
+int BuildTokenBindingMessageFromTokenBindings( |
+ const std::vector<std::string>& token_bindings, |
+ std::string* out) { |
+ return ERR_NOT_IMPLEMENTED; |
+} |
+ |
+} // namespace net |