// Copyright 2015 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/resources.h" #include <dlfcn.h> #include "base/check.h" #include "base/files/file_path.h" #include "base/path_service.h" #include "ui/base/resource/resource_bundle.h" #include "ui/base/ui_base_paths.h" namespace remoting { namespace { const char kLocaleResourcesDirName[] = …; } // namespace bool LoadResources(const std::string& pref_locale) { … } void UnloadResources() { … } } // namespace remoting