2014-10-31 21:17:05 +03:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-08-27 16:48:49 +04:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/app/atom_content_client.h"
|
|
|
|
|
2014-08-27 17:16:45 +04:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2014-09-12 19:28:14 +04:00
|
|
|
#include "atom/common/chrome_version.h"
|
2015-04-28 18:45:58 +03:00
|
|
|
#include "atom/common/options_switches.h"
|
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "base/strings/string_split.h"
|
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "content/public/common/content_constants.h"
|
|
|
|
#include "content/public/common/pepper_plugin_info.h"
|
|
|
|
#include "ppapi/shared_impl/ppapi_permissions.h"
|
2014-09-12 19:28:14 +04:00
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
namespace atom {
|
|
|
|
|
2015-05-05 11:54:22 +03:00
|
|
|
int32 kPepperFlashPermissions = ppapi::PERMISSION_ALL_BITS;
|
2015-04-28 18:45:58 +03:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
content::PepperPluginInfo CreatePepperFlashInfo(const base::FilePath& path,
|
|
|
|
const std::string& version) {
|
|
|
|
content::PepperPluginInfo plugin;
|
|
|
|
|
|
|
|
plugin.is_out_of_process = true;
|
|
|
|
plugin.name = content::kFlashPluginName;
|
|
|
|
plugin.path = path;
|
|
|
|
plugin.permissions = kPepperFlashPermissions;
|
2015-05-06 10:59:23 +03:00
|
|
|
plugin.version = version;
|
2015-04-28 18:45:58 +03:00
|
|
|
|
|
|
|
content::WebPluginMimeType swf_mime_type(
|
|
|
|
content::kFlashPluginSwfMimeType,
|
|
|
|
content::kFlashPluginSwfExtension,
|
|
|
|
content::kFlashPluginSwfDescription);
|
|
|
|
plugin.mime_types.push_back(swf_mime_type);
|
|
|
|
content::WebPluginMimeType spl_mime_type(
|
|
|
|
content::kFlashPluginSplMimeType,
|
|
|
|
content::kFlashPluginSplExtension,
|
|
|
|
content::kFlashPluginSplDescription);
|
|
|
|
plugin.mime_types.push_back(spl_mime_type);
|
|
|
|
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
AtomContentClient::AtomContentClient() {
|
|
|
|
}
|
|
|
|
|
|
|
|
AtomContentClient::~AtomContentClient() {
|
|
|
|
}
|
|
|
|
|
2014-09-12 19:28:14 +04:00
|
|
|
std::string AtomContentClient::GetProduct() const {
|
|
|
|
return "Chrome/" CHROME_VERSION_STRING;
|
|
|
|
}
|
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
void AtomContentClient::AddAdditionalSchemes(
|
|
|
|
std::vector<std::string>* standard_schemes,
|
|
|
|
std::vector<std::string>* savable_schemes) {
|
|
|
|
standard_schemes->push_back("chrome-extension");
|
|
|
|
}
|
|
|
|
|
2015-04-28 18:45:58 +03:00
|
|
|
void AtomContentClient::AddPepperPlugins(
|
|
|
|
std::vector<content::PepperPluginInfo>* plugins) {
|
2015-05-06 10:59:23 +03:00
|
|
|
auto command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
auto flash_path = command_line->GetSwitchValueNative(
|
|
|
|
switches::kPpapiFlashPath);
|
2015-04-28 18:45:58 +03:00
|
|
|
if (flash_path.empty())
|
|
|
|
return;
|
|
|
|
|
2015-05-06 10:59:23 +03:00
|
|
|
auto flash_version = command_line->GetSwitchValueASCII(
|
|
|
|
switches::kPpapiFlashVersion);
|
|
|
|
|
2015-04-28 18:45:58 +03:00
|
|
|
plugins->push_back(
|
|
|
|
CreatePepperFlashInfo(base::FilePath(flash_path), flash_version));
|
|
|
|
}
|
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
} // namespace atom
|