$OpenBSD: patch-remoting_host_user_authenticator_bsd_cc,v 1.2 2011/06/08 20:36:56 robert Exp $
--- remoting/host/user_authenticator_bsd.cc.orig	Wed Jun  8 09:58:36 2011
+++ remoting/host/user_authenticator_bsd.cc	Wed Jun  8 16:50:20 2011
@@ -0,0 +1,43 @@
+// Copyright (c) 2011 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 "remoting/host/user_authenticator.h"
+
+#include <stdlib.h>
+
+#include <string>
+
+#include "base/basictypes.h"
+
+namespace remoting {
+
+namespace {
+
+class UserAuthenticatorBSD : public UserAuthenticator {
+ public:
+  UserAuthenticatorBSD() {}
+  virtual ~UserAuthenticatorBSD() {}
+  virtual bool Authenticate(const std::string& username,
+                            const std::string& password);
+
+ private:
+  std::string username_;
+  std::string password_;
+
+  DISALLOW_COPY_AND_ASSIGN(UserAuthenticatorBSD);
+};
+
+bool UserAuthenticatorBSD::Authenticate(const std::string& username,
+                                        const std::string& password) {
+  return true;
+}
+
+}  // namespace
+
+// static
+UserAuthenticator* UserAuthenticator::Create() {
+  return new UserAuthenticatorBSD();
+}
+
+}  // namespace remoting
