// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/host/base/username.h" #include <vector> #include "base/notreached.h" #include "build/build_config.h" #if BUILDFLAG(IS_POSIX) #include <pwd.h> #include <sys/types.h> #include <unistd.h> #endif // BUILDFLAG(IS_POSIX) namespace remoting { std::string GetUsername() { … } } // namespace remoting