2013-03-13 19:12:05 +00:00
|
|
|
// 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"
|
|
|
|
|
2013-04-08 16:41:30 +00:00
|
|
|
#include "common/application_info.h"
|
2013-03-28 21:16:35 +00:00
|
|
|
#include "common/mac/foundation_util.h"
|
2013-03-14 17:05:01 +00:00
|
|
|
#include "common/mac/main_application_bundle.h"
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2013-07-17 15:04:45 +00:00
|
|
|
#include "base/command_line.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "base/mac/bundle_locations.h"
|
|
|
|
#include "base/path_service.h"
|
2013-10-07 19:16:49 +00:00
|
|
|
#include "base/strings/stringprintf.h"
|
2013-07-17 15:04:45 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "content/public/common/content_paths.h"
|
2013-07-17 15:04:45 +00:00
|
|
|
#include "content/public/common/content_switches.h"
|
2017-01-17 14:55:28 +00:00
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
base::FilePath GetFrameworksPath() {
|
2013-03-14 17:05:01 +00:00
|
|
|
return MainApplicationBundlePath().Append("Contents").Append("Frameworks");
|
2013-03-13 19:12:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-17 14:55:28 +00:00
|
|
|
base::FilePath GetResourcesPakFilePath(NSString* name) {
|
|
|
|
auto path = [base::mac::FrameworkBundle() pathForResource:name ofType:@"pak"];
|
2013-05-22 15:40:43 +00:00
|
|
|
return base::mac::NSStringToFilePath(path);
|
2013-03-14 13:03:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 14:55:28 +00:00
|
|
|
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]);
|
|
|
|
}
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
void MainDelegate::OverrideFrameworkBundlePath() {
|
2014-12-08 05:24:23 +00:00
|
|
|
base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + " Framework.framework");
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
base::mac::SetOverrideFrameworkBundlePath(helper_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainDelegate::OverrideChildProcessPath() {
|
2013-03-13 20:45:00 +00:00
|
|
|
base::FilePath helper_path = GetFrameworksPath().Append(GetApplicationName() + " Helper.app")
|
2013-03-13 19:12:05 +00:00
|
|
|
.Append("Contents")
|
|
|
|
.Append("MacOS")
|
2013-03-13 20:45:00 +00:00
|
|
|
.Append(GetApplicationName() + " Helper");
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
PathService::Override(content::CHILD_PROCESS_EXE, helper_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|