Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • gk/tor-browser
  • peterstory/tor-browser
  • sanketh/tor-browser
  • acat/tor-browser
  • sysrqb/tor-browser
  • boklm/tor-browser
  • dan/tor-browser
  • fabrizio/tor-browser
  • victorvw/tor-browser
  • aguestuser/tor-browser
  • WofWca/tor-browser
  • p13dz/tor-browser
  • mwolfe/tor-browser
  • tpo/applications/tor-browser
  • brade/tor-browser
  • pierov/tor-browser
  • ma1/tor-browser
  • JeremyRand/tor-browser
  • henry/tor-browser
  • msimonelli/tor-browser
  • cypherpunks1/tor-browser
  • blackZwork/tor-browser
  • starlingroot/tor-browser
  • cohosh/tor-browser
  • t-m-w/tor-browser
  • trinity-1686a/tor-browser
  • HHN/tor-browser
  • emmapeel/tor-browser
  • Achintya_Sharma/tor-browser
  • guest475646844/tor-browser
  • Mima/tor-browser
  • morgan/tor-browser
  • clairehurst/tor-browser
  • NoisyCoil/tor-browser
  • gus/tor-browser
  • Francewhoa/tor-browser
  • novialriptide/tor-browser
  • jwilde/tor-browser
  • brizental/tor-browser
  • ourhopeforfreedom/tor-browser
  • onyinyang/tor-browser
  • Noino/tor-browser
  • murmelurmel/tor-browser
43 results
Show changes
......@@ -1445,6 +1445,12 @@ void vp8_change_config(VP8_COMP *cpi, VP8_CONFIG *oxcf) {
last_h = cpi->oxcf.Height;
prev_number_of_layers = cpi->oxcf.number_of_layers;
if (cpi->initial_width) {
// TODO(https://crbug.com/1486441): Allow changing thread counts; the
// allocation is done once in vp8_create_compressor().
oxcf->multi_threaded = cpi->oxcf.multi_threaded;
}
cpi->oxcf = *oxcf;
switch (cpi->oxcf.Mode) {
......
......@@ -181,6 +181,8 @@ const char* const ApplicationReputationService::kBinaryFileExtensions[] = {
".applescript",
//".application", exec // MS ClickOnce
//".appref-ms", exec // MS ClickOnce
//".appx", exec
//".appxbundle", exec
//".arc",
//".arj",
".as", // Mac archive
......@@ -331,6 +333,8 @@ const char* const ApplicationReputationService::kBinaryFileExtensions[] = {
//".msh2xml", exec // Windows shell
//".mshxml", exec // Windows
//".msi", exec // Windows installer
//".msix", exec // Windows installer
//".msixbundle", exec // Windows installer
//".msp", exec // Windows installer
//".mst", exec // Windows installer
".ndif", // Mac disk image
......
......@@ -24,6 +24,8 @@ static const char* const kTestFileExtensions[] = {
".applescript",
".application", // MS ClickOnce
".appref-ms", // MS ClickOnce
".appx",
".appxbundle",
".as", // Mac archive
".asp", // Windows Server script
".asx", // Windows Media Player
......@@ -151,6 +153,8 @@ static const char* const kTestFileExtensions[] = {
".msh2xml", // Windows shell
".mshxml", // Windows
".msi", // Windows installer
".msix", // Windows installer
".msixbundle", // Windows installer
".msp", // Windows installer
".mst", // Windows installer
".ndif", // Mac disk image
......
......@@ -40,6 +40,8 @@ const char* const sExecutableExts[] = {
".app", // executable application
".application", // from bug 348763
".appref-ms", // ClickOnce link
".appx",
".appxbundle",
".asp",
".atloc", // Appletalk Location
".bas",
......@@ -91,6 +93,8 @@ const char* const sExecutableExts[] = {
".msh2xml", // Microsoft Shell
".mshxml", // Microsoft Shell
".msi",
".msix",
".msixbundle",
".msp",
".mst",
".ops", // Office Profile Settings
......
......@@ -7,6 +7,6 @@
#ifndef _NS_LOCAL_FILE_COMMON_H_
#define _NS_LOCAL_FILE_COMMON_H_
extern const char* const sExecutableExts[103];
extern const char* const sExecutableExts[107];
#endif