- 11 Jan, 2017 40 commits
-
-
johannkoenig authored
https://chromium.googlesource.com/webm/libvpx.git/+log/f27276f44fa3..5b1a8ca5e846 $ git log f27276f44..5b1a8ca5e --date=short --no-merges --format='%ad %ae %s' 2017-01-09 marpan vp9: Fix comment in speed features. 2017-01-09 marpan vp9: 1 pass cbr: Fix to qp clamping when gf_cbr_boost_pct is used. 2016-12-22 johannkoenig postproc: vpx_mbpost_proc_down_neon 2017-01-09 kaustubh.raste Add mips dspr2 partial idct tests 2017-01-09 kaustubh.raste Fix mips dspr2 idct32x32 functions for large coefficient input 2017-01-09 kaustubh.raste Fix mips dspr2 idct16x16 functions for large coefficient input 2017-01-09 kaustubh.raste Fix mips dspr2 idct8x8 functions for large coefficient input 2017-01-09 kaustubh.raste Fix mips dspr2 idct4x4 functions for large coefficient input 2017-01-09 kaustubh.raste Add mips dspr2 vp9 intrapred tests 2017-01-06 linfengz Refine 8-bit 16x16 idct NEON intrinsics 2016-12-21 johannkoenig postproc: vpx_mbpost_proc_across_ip_neon 2017-01-06 marpan vp9: 1 pass cbr mode: increase threshold for gf_cbr_boost_pct usage. 2017-01-06 marpan vp9: Add some controls to sample encoder: vpx_temporal_svc_encoder 2017-01-06 jianj vp9: Enable more aggresive short circuit for speed 8. 2016-12-02 huisu Add support for VP9 level targeting 2017-01-04 jianj vp9: Compute source sad for every superblock when partition copy is on. 2017-01-04 jianj vp9: Set short circuit to level 3 for VGA for speed 8. 2017-01-03 marpan vp9: 1 pass cbr: allow noise estimation down to 360p. 2016-12-21 marpan vp9: SVC unittests: fix to use y4m source. 2016-12-21 ranjit.tulabandu Fix for out of range motion vector bug in joint motion search (...) R=tomfinegan@chromium.org Review-Url: https://codereview.chromium.org/2619353003 Cr-Commit-Position: refs/heads/master@{#442897}
-
skia-deps-roller authored
https://skia.googlesource.com/skia.git/+log/db52cf3b040d..c601698f9bf5 $ git log db52cf3b0..c601698f9 --date=short --no-merges --format='%ad %ae %s' 2017-01-11 borenet Roll recipe DEPS Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=kjlubick@google.com Review-Url: https://codereview.chromium.org/2626053002 Cr-Commit-Position: refs/heads/master@{#442896}
-
bnc authored
This CL also lands server change 143046389 by bnc. BUG=488484 Review-Url: https://codereview.chromium.org/2572343002 Cr-Commit-Position: refs/heads/master@{#442895}
-
grt authored
This cleanup CL: - Removes InstallUtil::IsMultiInstall. - Removes MasterPreferences::is_multi_install. - Removes various multi-related constants. BUG=577816 Review-Url: https://codereview.chromium.org/2594113002 Cr-Commit-Position: refs/heads/master@{#442894}
-
sbc authored
This pulls in the recent addition of jsoncpp: https://codereview.chromium.org/2603963002 BUG=564904 Review-Url: https://codereview.chromium.org/2619963006 Cr-Commit-Position: refs/heads/master@{#442893}
-
haraken authored
We're deprecating the default constructor of Supplement. This CL also moves GarbageCollectedFinalized up to ScreenOrientationController. BUG=610176 Review-Url: https://codereview.chromium.org/2625043002 Cr-Commit-Position: refs/heads/master@{#442892}
-
fdoray authored
The following traits are used: Priority: Inherited (default) The priority is inherited from the calling context (i.e. TaskTraits are initialized with the priority of the current task). Shutdown behavior: CONTINUE_ON_SHUTDOWN Tasks posted with this mode which have not started executing before shutdown is initiated will never run. Tasks with this mode running at shutdown will be ignored (the worker will not be joined). Note: Tasks that were previously posted to base::WorkerPool should use this shutdown behavior because this is how base::WorkerPool handles all its tasks. May Block: Tasks posted with MayBlock() may block. This includes but is not limited to tasks that wait on synchronous file I/O operations: read or write a file from disk, interact with a pipe or a socket, rename or delete a file, enumerate files in a directory, etc. This trait isn't required for the mere use of locks. BUG=659191 Review-Url: https://codereview.chromium.org/2606193002 Cr-Commit-Position: refs/heads/master@{#442891}
-
aazzam authored
A part of Project Ribbon, separating the parsing logic for CSS properties from the parser into an API. This patch removes CSSPropertyPaintOrder from the switch statement in parseSingleValue, and calls the API instead. A function pointer to the parseSingleValue function from the API for the page property is stored in a CSSPropertyDescriptor, and is called from CSSPropertyParser. This patch: - Adds CSSPropertyAPIPaintOrder.cpp to the BUILD.gn file. - Adds api_class flag to CSSProperties.in, which indicates that CSSPropertyAPIPaintOrder.h is generated. - Moves the parsing logic for page from CSSPropertyParser.cpp to CSSPropertyAPIPaintOrder.cpp, which implements CSSPropertyAPI.h. BUG=668012 Review-Url: https://codereview.chromium.org/2612103003 Cr-Commit-Position: refs/heads/master@{#442890}
-
yhirano authored
This CL makes MainThreadLoaderHolder::cancel a pre-finalizer in case we are failing to call DocumentThreadableLoader::cancel in it. BUG=667254 Review-Url: https://codereview.chromium.org/2622223002 Cr-Commit-Position: refs/heads/master@{#442889}
-
mark authored
This should have been working already, but a functioning crash_reporter::CrashReporterClient::GetCrashMetricsLocation() for macOS was unintentionally absent. BUG=crashpad:100,chromium:678720 Review-Url: https://codereview.chromium.org/2610883006 Cr-Commit-Position: refs/heads/master@{#442888}
-
yoav authored
Handling of the `type` attribute in `<link rel=preload>` was not properly added, which meant preloads that included a valid type were dismissed due to rel=stylesheet related logic. This CL adds proper handling for the `type` attribute in `<link rel=preload>` for fonts, images and styles. BUG=659640 Review-Url: https://codereview.chromium.org/2620993002 Cr-Commit-Position: refs/heads/master@{#442887}
-
wychen authored
This CL reverts "Experiment with emulating mouse hover with touch hover capable devices" This reverts commit d74bc3e1. BUG=418188, 617437 Review-Url: https://codereview.chromium.org/2621073002 Cr-Commit-Position: refs/heads/master@{#442886}
-
finkm authored
Change assert in RecentTabsPage.destroy(). It always failed when the RecentTabsPage was closed without opening a recent tab. BUG= Review-Url: https://codereview.chromium.org/2595933002 Cr-Commit-Position: refs/heads/master@{#442885}
-
bcwhite authored
Some compilers, including MSVC, don't consider std::atomic as a POD- compatible type which makes it impossible to include them in persistent memory when using the object interface -- something which is obviously desireable. New "object" management embeds the type directly in the class/struct definition and runs the default constructor of the type after allocation, thus making the allocator compatible with a much greater range of types. BUG=546019 Review-Url: https://codereview.chromium.org/2578323002 Cr-Commit-Position: refs/heads/master@{#442884}
-
grt authored
Including: - Removes the "multi-install" crash key from setup.exe. - Removes some dead test code. - Removes duplicated code in IsActivelyUsedIn. BUG=577816 Review-Url: https://codereview.chromium.org/2619963005 Cr-Commit-Position: refs/heads/master@{#442883}
-
sczs authored
The title text color was being changed on the VC, so we need to reset it as well. BUG=674493 Review-Url: https://codereview.chromium.org/2627753002 Cr-Commit-Position: refs/heads/master@{#442882}
-
xiaochengh authored
Updating frame selection currently requires clean layout, as it calls mostBackwardCaretPosition through SelectionAdjuster. One code path that violates it is from Editor::appliedEditing, which is fixed by this patch. BUG=679616 Review-Url: https://codereview.chromium.org/2626933002 Cr-Commit-Position: refs/heads/master@{#442881}
-
ahmetemiremir authored
BUG=672258 Review-Url: https://codereview.chromium.org/2586063002 Cr-Commit-Position: refs/heads/master@{#442880}
-
aazzam authored
A part of Project Ribbon, separating the parsing logic for CSS properties from the parser into an API. This patch removes CSSPropertyPage from the switch statement in parseSingleValue, and calls the API instead. A function pointer to the parseSingleValue function from the API for the page property is stored in a CSSPropertyDescriptor, and is called from CSSPropertyParser. This patch: - Adds CSSPropertyAPIPage.cpp to the BUILD.gn file. - Adds api_class flag to CSSProperties.in, which indicates that CSSPropertyAPIPage.h is generated. - Moves the parsing logic for page from CSSPropertyParser.cpp to CSSPropertyAPIPage.cpp, which implements CSSPropertyAPI.h. BUG=668012 Review-Url: https://codereview.chromium.org/2618523003 Cr-Commit-Position: refs/heads/master@{#442879}
-
sigbjornf authored
R=haraken BUG= CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2625053002 Cr-Commit-Position: refs/heads/master@{#442878}
-
zpeng authored
Review-Url: https://codereview.chromium.org/2625753002 Cr-Commit-Position: refs/heads/master@{#442877}
-
aazzam authored
A part of Project Ribbon, separating the parsing logic for CSS properties from the parser into an API. This patch removes CSSPropertyOutlineOffset from the switch statement in parseSingleValue, and calls the API instead. A function pointer to the parseSingleValue function from the API for the page property is stored in a CSSPropertyDescriptor, and is called from CSSPropertyParser. This patch: - Adds CSSPropertyAPIOutlineOffset.cpp to the BUILD.gn file. - Adds api_class flag to CSSProperties.in, which indicates that CSSPropertyAPIOutlineOffset.h is generated. - Moves the parsing logic for page from CSSPropertyParser.cpp to CSSPropertyAPIOutlineOffset.cpp, which implements CSSPropertyAPI.h. BUG=668012 Review-Url: https://codereview.chromium.org/2610813004 Cr-Commit-Position: refs/heads/master@{#442876}
-
msarda authored
This CL changes the views sign-in dialod to be tab modal and keeps the views sync confirmation dialog and the sign-in erorr dialogs as window modal. BUG=677012 Review-Url: https://codereview.chromium.org/2619963003 Cr-Commit-Position: refs/heads/master@{#442875}
-
grt authored
BUG=577816 Review-Url: https://codereview.chromium.org/2601443002 Cr-Commit-Position: refs/heads/master@{#442874}
-
haraken authored
Now that Navigator's Supplements can retrieve the Navigator object with host(), those Supplements don't need to observe ContextClient. BUG=610176 Review-Url: https://codereview.chromium.org/2611133002 Cr-Commit-Position: refs/heads/master@{#442873}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/dd4cb049..8ba45f77 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2625963002 Cr-Commit-Position: refs/heads/master@{#442872}
-
mblsha authored
Disable the implicitly generated special functions that perform copies and moves according to the Google C++ Style Guide. BUG=None Review-Url: https://codereview.chromium.org/2595313002 Cr-Commit-Position: refs/heads/master@{#442871}
-
grt authored
- Remove |options| set. - Remove InitializeFrom* methods. - Remove unused SetChannelFlags method. BUG=577816 Review-Url: https://codereview.chromium.org/2621923002 Cr-Commit-Position: refs/heads/master@{#442870}
-
dullweber authored
A method that checks if files of deleted profiles still exist was added in http://crrev.com/2546523003. We decided that it is ok to call NukeProfileFromDisk without checking if the files still exist because it fails silently. But we also show a log message that says that there are still files. This cl adds a condition to check if profile files still exist to avoid showing the wrong log message. BUG=236244 Review-Url: https://codereview.chromium.org/2622853002 Cr-Commit-Position: refs/heads/master@{#442869}
-
grt authored
BUG=577816 Review-Url: https://codereview.chromium.org/2622883002 Cr-Commit-Position: refs/heads/master@{#442868}
-
tyoshino authored
R=yhirano@chromium.org BUG=none Review-Url: https://codereview.chromium.org/2625573003 Cr-Commit-Position: refs/heads/master@{#442867}
-
pmarko authored
Introduce a mechanism for an incoming QuicAllowed cloud policy to control QUIC protocol usage for new streams even after IOThread initialization. NetPrefObserver has been re-introduced to observe the change (after it was removed in crrev.com/2140733002 and crrev.com/2172543003). BUG=658454 TEST=browser_tests --gtest_filter=*QuicAllowed* CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2546533003 Cr-Commit-Position: refs/heads/master@{#442866}
-
pmarko authored
This flag can be removed because all policy test servers provide verification signatures. BUG=275291 Review-Url: https://codereview.chromium.org/2606423002 Cr-Commit-Position: refs/heads/master@{#442865}
-
mlamouri authored
Otherwise, the painting will not take into consideration the new value. BUG=677903 Review-Url: https://codereview.chromium.org/2616343004 Cr-Commit-Position: refs/heads/master@{#442864}
-
stkhapugin authored
Automatically generated ARCMigrate commit Notable issues:None BUG=624363 TEST=None Review-Url: https://codereview.chromium.org/2627453003 Cr-Commit-Position: refs/heads/master@{#442863}
-
scheib authored
BUG=554298 Review-Url: https://codereview.chromium.org/2625903003 Cr-Commit-Position: refs/heads/master@{#442862}
-
Rebaseline Bot authored
https://chromium.googlesource.com/chromium/src/+/c5291a0115a65 BUG=588060 TBR=joone.hur@intel.com Review-Url: https://codereview.chromium.org/2628823002 . Cr-Commit-Position: refs/heads/master@{#442861}
-
aazzam authored
A part of Project Ribbon, separating the parsing logic for CSS properties from the parser into an API. This patch removes CSSPropertyOffsetPosition from the switch statement in parseSingleValue, and calls the API instead. A function pointer to the parseSingleValue function from the API for the page property is stored in a CSSPropertyDescriptor, and is called from CSSPropertyParser. This patch: - Adds CSSPropertyAPIOffsetPosition.cpp to the BUILD.gn file. - Adds api_class flag to CSSProperties.in, which indicates that CSSPropertyAPIOffsetPosition.h is generated. - Moves the parsing logic for page from CSSPropertyParser.cpp to CSSPropertyAPIOffsetPosition.cpp, which implements CSSPropertyAPI.h. BUG=668012 Review-Url: https://codereview.chromium.org/2613863002 Cr-Commit-Position: refs/heads/master@{#442860}
-
stkhapugin authored
Automatically generated ARCMigrate commit Notable issues:None BUG=624363 TEST=None Review-Url: https://codereview.chromium.org/2627633002 Cr-Commit-Position: refs/heads/master@{#442859}
-
fukino authored
BUG=671585 TEST=download tgz file, and confirm that double-clicking the tgz file shows suggestions about extensions. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2553003003 Cr-Commit-Position: refs/heads/master@{#442858}
-