2013-03-13 15:12:05 -04: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.
|
|
|
|
|
2017-05-18 16:53:12 -07:00
|
|
|
#import "brightray/common/main_delegate.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2013-07-17 11:04:45 -04:00
|
|
|
#include "base/command_line.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
#include "base/mac/bundle_locations.h"
|
2017-05-18 15:29:22 -07:00
|
|
|
#include "base/mac/foundation_util.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
#include "base/path_service.h"
|
2013-10-07 15:16:49 -04:00
|
|
|
#include "base/strings/stringprintf.h"
|
2013-07-17 11:04:45 -04:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2017-05-18 15:58:12 -07:00
|
|
|
#include "brightray/common/application_info.h"
|
|
|
|
#include "brightray/common/mac/main_application_bundle.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
#include "content/public/common/content_paths.h"
|
2013-07-17 11:04:45 -04:00
|
|
|
#include "content/public/common/content_switches.h"
|
2017-01-17 20:25:28 +05:30
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
2013-03-13 15:12:05 -04:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
base::FilePath GetFrameworksPath() {
|
2013-03-14 13:05:01 -04:00
|
|
|
return MainApplicationBundlePath().Append("Contents").Append("Frameworks");
|
2013-03-13 15:12:05 -04:00
|
|
|
}
|
|
|
|
|
2017-02-01 20:25:33 +05:30
|
|
|
} // namespace
|
|
|
|
|
2013-03-13 15:12:05 -04:00
|
|
|
void MainDelegate::OverrideFrameworkBundlePath() {
|
2018-04-20 14:47:04 -04:00
|
|
|
base::FilePath helper_path =
|
|
|
|
GetFrameworksPath().Append(GetApplicationName() + " Framework.framework");
|
2013-03-13 15:12:05 -04:00
|
|
|
|
|
|
|
base::mac::SetOverrideFrameworkBundlePath(helper_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainDelegate::OverrideChildProcessPath() {
|
2018-04-20 14:47:04 -04:00
|
|
|
base::FilePath helper_path = GetFrameworksPath()
|
|
|
|
.Append(GetApplicationName() + " Helper.app")
|
|
|
|
.Append("Contents")
|
|
|
|
.Append("MacOS")
|
|
|
|
.Append(GetApplicationName() + " Helper");
|
2013-03-13 15:12:05 -04:00
|
|
|
|
2018-09-14 17:09:42 -07:00
|
|
|
base::PathService::Override(content::CHILD_PROCESS_EXE, helper_path);
|
2013-03-13 15:12:05 -04:00
|
|
|
}
|
|
|
|
|
2017-02-01 20:25:33 +05:30
|
|
|
} // namespace brightray
|