Sends NetworkChangeNotifier connection type changes to Blink, to support NetInfo v3.
[chromium-blink-merge.git] / remoting / base / resources_mac.cc
blob7ea59b6a8a070ed84b9d9d3833da7d0ab0b5d0b3
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "remoting/base/resources.h"
7 #include <dlfcn.h>
9 #include "base/files/file_path.h"
10 #include "base/logging.h"
11 #include "base/mac/bundle_locations.h"
12 #include "ui/base/l10n/l10n_util_mac.h"
13 #include "ui/base/resource/resource_bundle.h"
15 namespace remoting {
17 bool LoadResources(const std::string& pref_locale) {
18 if (ui::ResourceBundle::HasSharedInstance()) {
19 ui::ResourceBundle::GetSharedInstance().ReloadLocaleResources(pref_locale);
20 } else {
21 // Retrieve the path to the module containing this function.
22 Dl_info info;
23 CHECK(dladdr(reinterpret_cast<void*>(&LoadResources), &info) != 0);
25 // Use the plugin's bundle instead of the hosting app bundle. The three
26 // DirName() calls strip "Contents/MacOS/<binary>" from the path.
27 base::FilePath path =
28 base::FilePath(info.dli_fname).DirName().DirName().DirName();
29 base::mac::SetOverrideFrameworkBundlePath(path);
31 // Override the locale with the value from Cocoa.
32 if (pref_locale.empty())
33 l10n_util::OverrideLocaleWithCocoaLocale();
35 ui::ResourceBundle::InitSharedInstanceLocaleOnly(pref_locale, NULL);
38 return true;
41 void UnloadResources() {
42 ui::ResourceBundle::CleanupSharedInstance();
45 } // namespace remoting