59 lines
2 KiB
Text
59 lines
2 KiB
Text
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
#import "main_delegate.h"
|
|
|
|
#include "common/application_info.h"
|
|
#include "common/mac/foundation_util.h"
|
|
#include "common/mac/main_application_bundle.h"
|
|
|
|
#include "base/command_line.h"
|
|
#include "base/mac/bundle_locations.h"
|
|
#include "base/path_service.h"
|
|
#include "base/strings/stringprintf.h"
|
|
#include "base/strings/sys_string_conversions.h"
|
|
#include "content/public/common/content_paths.h"
|
|
#include "content/public/common/content_switches.h"
|
|
#include "ui/base/resource/resource_bundle.h"
|
|
|
|
namespace brightray {
|
|
|
|
namespace {
|
|
|
|
base::FilePath GetFrameworksPath() {
|
|
return MainApplicationBundlePath().Append("Contents").Append("Frameworks");
|
|
}
|
|
|
|
base::FilePath GetResourcesPakFilePath(NSString* name) {
|
|
auto path = [base::mac::FrameworkBundle() pathForResource:name ofType:@"pak"];
|
|
return base::mac::NSStringToFilePath(path);
|
|
}
|
|
|
|
} // namespace
|
|
|
|
void LoadCommonResources() {
|
|
ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance();
|
|
bundle.AddDataPackFromPath(GetResourcesPakFilePath(@"content_shell"),
|
|
ui::GetSupportedScaleFactors()[0]);
|
|
bundle.AddDataPackFromPath(GetResourcesPakFilePath(@"pdf_viewer_resources"),
|
|
ui::GetSupportedScaleFactors()[0]);
|
|
}
|
|
|
|
void MainDelegate::OverrideFrameworkBundlePath() {
|
|
base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + " Framework.framework");
|
|
|
|
base::mac::SetOverrideFrameworkBundlePath(helper_path);
|
|
}
|
|
|
|
void MainDelegate::OverrideChildProcessPath() {
|
|
base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + " Helper.app")
|
|
.Append("Contents")
|
|
.Append("MacOS")
|
|
.Append(GetApplicationName() + " Helper");
|
|
|
|
PathService::Override(content::CHILD_PROCESS_EXE, helper_path);
|
|
}
|
|
|
|
} // namespace brightray
|