2013-03-13 19:12:05 +00:00
|
|
|
// Copyright (c) 2012 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-CHROMIUM file.
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
#include "common/main_delegate.h"
|
|
|
|
|
2016-05-23 01:59:07 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
#include "browser/browser_client.h"
|
|
|
|
#include "common/content_client.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
#include "base/command_line.h"
|
2013-05-22 15:40:43 +00:00
|
|
|
#include "base/path_service.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "content/public/common/content_switches.h"
|
2013-05-22 15:40:43 +00:00
|
|
|
#include "ui/base/resource/resource_bundle.h"
|
2016-01-08 04:04:23 +00:00
|
|
|
#include "ui/base/ui_base_switches.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2016-01-08 04:04:23 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Returns true if this subprocess type needs the ResourceBundle initialized
|
|
|
|
// and resources loaded.
|
|
|
|
bool SubprocessNeedsResourceBundle(const std::string& process_type) {
|
|
|
|
return
|
|
|
|
#if defined(OS_POSIX) && !defined(OS_MACOSX)
|
|
|
|
// The zygote process opens the resources for the renderers.
|
|
|
|
process_type == switches::kZygoteProcess ||
|
|
|
|
#endif
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Mac needs them too for scrollbar related images and for sandbox
|
|
|
|
// profiles.
|
|
|
|
#if !defined(DISABLE_NACL)
|
|
|
|
process_type == switches::kNaClLoaderProcess ||
|
|
|
|
#endif
|
|
|
|
process_type == switches::kPpapiPluginProcess ||
|
|
|
|
process_type == switches::kPpapiBrokerProcess ||
|
|
|
|
process_type == switches::kGpuProcess ||
|
|
|
|
#endif
|
|
|
|
process_type == switches::kRendererProcess ||
|
|
|
|
process_type == switches::kUtilityProcess;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
void InitializeResourceBundle(const std::string& locale) {
|
|
|
|
// Load locales.
|
|
|
|
ui::ResourceBundle::InitSharedInstanceWithLocale(
|
|
|
|
locale, nullptr, ui::ResourceBundle::DO_NOT_LOAD_COMMON_RESOURCES);
|
|
|
|
|
|
|
|
// Load other resource files.
|
|
|
|
base::FilePath path;
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
path = GetResourcesPakFilePath();
|
|
|
|
#else
|
|
|
|
base::FilePath pak_dir;
|
|
|
|
PathService::Get(base::DIR_MODULE, &pak_dir);
|
|
|
|
path = pak_dir.Append(FILE_PATH_LITERAL("content_shell.pak"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ui::ResourceBundle& bundle = ui::ResourceBundle::GetSharedInstance();
|
|
|
|
bundle.AddDataPackFromPath(path, ui::GetSupportedScaleFactors()[0]);
|
2016-07-29 01:50:48 +00:00
|
|
|
#if !defined(OS_MACOSX)
|
2016-01-08 04:04:23 +00:00
|
|
|
bundle.AddDataPackFromPath(
|
2016-07-25 02:10:20 +00:00
|
|
|
pak_dir.Append(FILE_PATH_LITERAL("blink_image_resources_200_percent.pak")),
|
2016-01-08 04:04:23 +00:00
|
|
|
ui::SCALE_FACTOR_200P);
|
|
|
|
bundle.AddDataPackFromPath(
|
|
|
|
pak_dir.Append(FILE_PATH_LITERAL("content_resources_200_percent.pak")),
|
|
|
|
ui::SCALE_FACTOR_200P);
|
2016-07-25 02:10:20 +00:00
|
|
|
bundle.AddDataPackFromPath(
|
|
|
|
pak_dir.Append(FILE_PATH_LITERAL("ui_resources_200_percent.pak")),
|
|
|
|
ui::SCALE_FACTOR_200P);
|
|
|
|
bundle.AddDataPackFromPath(
|
|
|
|
pak_dir.Append(FILE_PATH_LITERAL("views_resources_200_percent.pak")),
|
|
|
|
ui::SCALE_FACTOR_200P);
|
2016-01-08 04:04:23 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-24 22:30:47 +00:00
|
|
|
MainDelegate::MainDelegate() {
|
2013-03-13 19:12:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MainDelegate::~MainDelegate() {
|
|
|
|
}
|
|
|
|
|
2016-05-23 01:59:07 +00:00
|
|
|
std::unique_ptr<ContentClient> MainDelegate::CreateContentClient() {
|
|
|
|
return std::unique_ptr<ContentClient>(new ContentClient);
|
2013-04-24 22:30:47 +00:00
|
|
|
}
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
bool MainDelegate::BasicStartupComplete(int* exit_code) {
|
2016-03-08 11:59:29 +00:00
|
|
|
content_client_ = CreateContentClient();
|
2013-03-14 13:03:50 +00:00
|
|
|
SetContentClient(content_client_.get());
|
2013-03-13 19:12:05 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
OverrideChildProcessPath();
|
|
|
|
OverrideFrameworkBundlePath();
|
2013-05-22 15:40:43 +00:00
|
|
|
#endif
|
2014-06-26 20:35:27 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainDelegate::PreSandboxStartup() {
|
2016-01-08 04:04:23 +00:00
|
|
|
auto cmd = *base::CommandLine::ForCurrentProcess();
|
|
|
|
std::string process_type = cmd.GetSwitchValueASCII(switches::kProcessType);
|
2013-05-22 15:40:43 +00:00
|
|
|
|
2016-01-08 04:04:23 +00:00
|
|
|
// Initialize ResourceBundle which handles files loaded from external
|
|
|
|
// sources. The language should have been passed in to us from the
|
|
|
|
// browser process as a command line flag.
|
|
|
|
if (SubprocessNeedsResourceBundle(process_type)) {
|
|
|
|
std::string locale = cmd.GetSwitchValueASCII(switches::kLang);
|
|
|
|
InitializeResourceBundle(locale);
|
|
|
|
}
|
2013-03-13 19:12:05 +00:00
|
|
|
}
|
|
|
|
|
2013-12-03 22:12:21 +00:00
|
|
|
content::ContentBrowserClient* MainDelegate::CreateContentBrowserClient() {
|
2016-03-08 11:59:29 +00:00
|
|
|
browser_client_ = CreateBrowserClient();
|
2013-12-03 22:12:21 +00:00
|
|
|
return browser_client_.get();
|
|
|
|
}
|
|
|
|
|
2016-05-23 01:59:07 +00:00
|
|
|
std::unique_ptr<BrowserClient> MainDelegate::CreateBrowserClient() {
|
|
|
|
return std::unique_ptr<BrowserClient>(new BrowserClient);
|
2013-12-03 22:12:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-17 23:20:17 +00:00
|
|
|
} // namespace brightray
|