Index: remoting/base/resources_linux.cc |
diff --git a/remoting/base/resources_linux.cc b/remoting/base/resources_linux.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..af530e89b0a4519cde0dd6b77380c6bd5b4e8f42 |
--- /dev/null |
+++ b/remoting/base/resources_linux.cc |
@@ -0,0 +1,44 @@ |
+// Copyright 2013 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/base/resources.h" |
+ |
+#include <dlfcn.h> |
+ |
+#include "base/files/file_path.h" |
+#include "base/logging.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[] = "remoting_locales"; |
+} // namespace |
+ |
+bool LoadResources(const std::string& pref_locale) { |
+ if (ui::ResourceBundle::HasSharedInstance()) { |
+ ui::ResourceBundle::GetSharedInstance().ReloadLocaleResources(pref_locale); |
+ } else { |
+ // Retrive the path to the module containing this function. |
+ Dl_info info; |
+ CHECK(dladdr(reinterpret_cast<void*>(&LoadResources), &info) != 0); |
+ |
+ // Point DIR_LOCALES to 'remoting_locales'. |
+ base::FilePath path = base::FilePath(info.dli_fname).DirName(); |
+ PathService::Override(ui::DIR_LOCALES, |
+ path.AppendASCII(kLocaleResourcesDirName)); |
+ |
+ ui::ResourceBundle::InitSharedInstanceLocaleOnly(pref_locale, NULL); |
+ } |
+ |
+ return true; |
+} |
+ |
+void UnloadResources() { |
+ ui::ResourceBundle::CleanupSharedInstance(); |
+} |
+ |
+} // namespace remoting |