Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1349)

Unified Diff: remoting/base/resources_linux.cc

Issue 1318773003: Move remoting/base/resources* to remoting/host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/base/resources.h ('k') | remoting/base/resources_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/resources_linux.cc
diff --git a/remoting/base/resources_linux.cc b/remoting/base/resources_linux.cc
deleted file mode 100644
index 63a53f2b496438cab9e58165685a48afc9fbbc6a..0000000000000000000000000000000000000000
--- a/remoting/base/resources_linux.cc
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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 {
- // Retrieve 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::InitSharedInstanceWithLocale(
- pref_locale, NULL, ui::ResourceBundle::DO_NOT_LOAD_COMMON_RESOURCES);
- }
-
- return true;
-}
-
-void UnloadResources() {
- ui::ResourceBundle::CleanupSharedInstance();
-}
-
-} // namespace remoting
« no previous file with comments | « remoting/base/resources.h ('k') | remoting/base/resources_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698