- 29 Jan, 2018 40 commits
-
-
Raphael Kubo da Costa authored
We were previously using an std::set<std::string> to filter out mime type duplicates, optionally adding the "application/octet-stream" mime type to the set before joining all items as a single string to pass to the kdialog invocation. This used to work fine with the KDE4-based kdialog, whose underlying KFileDialog ended up creating a custom file type filter with all entries and suggesting the proper file extension. The KDE Frameworks 5-based kdialog that was released a few months ago uses a simple QFileDialog, and the filter's entries are added in the order they are passed to kdialog. In practice, this means that downloading a PDF file (or any file whose mime type ended up coming after "application/octet-stream" when iterating our std::set) causes kdialog to be invoked like this: kdialog [...] --getsavefilename /path/to/Downloads/foo.pdf \ application/octet-stream application/pdf KDE4 kdialog suggests "foo.pdf" as the name and adds "unknown, PDF document", "unknown" and "PDF document" to the filter list. KF5 kdialog suggests "foo.bin" as the name and adds "unknown" and "PDF document" to the filter list. We now make sure that "application/octet-stream" is the last mime type we pass to kdialog so that any other more specific mime type is chosen as the default and we do not always try to add the ".bin" extension to the files we are saving. Bug: 752375 Change-Id: I56a458042823c52beada9c1819c2ee4b8b8e5e30 Reviewed-on: https://chromium-review.googlesource.com/891160 Commit-Queue: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> Reviewed-by:
Elliot Glaysher <erg@chromium.org> Cr-Commit-Position: refs/heads/master@{#532556}
-
Daniel Cheng authored
Going forward, this is the preferred naming for modules containing EnumTraits, StructTraits, and UnionTraits. Change-Id: I4e363a9c74cd3f43d071cd4cdc4cb6c0a72be722 Bug: 806965 Reviewed-on: https://chromium-review.googlesource.com/891673 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Cr-Commit-Position: refs/heads/master@{#532555}
-
Christian Fremerey authored
* Move base::Feature for enabling video capture service to content_features.h/cc. * Added base::Feature "RunVideoCaptureServiceInBrowserProcess" to allow forcing the service to run in the browser process * Add logic for determining if and where service should run. * In file device_factory_media_to_mojo_adapter.cc, allow devices that report zero supported formats, since this appears to be a valid case on Android. This CL does not yet register the service factory as an embedded service in the Browser process. This needs to be done in a follow-up step as soon as questions regarding EmbeddedInstanceManager have been resolved, see [1]. [1] https://chromium-review.googlesource.com/c/chromium/src/+/817646 Design Doc: https://docs.google.com/document/d/1Kg5S6K8rwIqMVzo4lbipy_rxjxO9zqKdYrnxSvLJZkg/edit?usp=sharing Bug: 792621 Change-Id: I5b3c4a79e2f267238e3b726a736852d6a4205e0d Reviewed-on: https://chromium-review.googlesource.com/759412 Commit-Queue: Christian Fremerey <chfremer@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Cr-Commit-Position: refs/heads/master@{#532554}
-
Samuel Huang authored
Recent refactoring in Zucchini Trunk replaced explicit "separator" (archive content outside matched elements) computation with "gap" handling that occurs close to element handling. This CL removes the now-obsolete explicit separator computation code from Zucchini Chromium, to prepare for merging in ensemble matching code from Trunk. Bug: 729154 Change-Id: I7c917df058e104d8f1d518d37a673edaf0a2918c Reviewed-on: https://chromium-review.googlesource.com/891443Reviewed-by:
agrieve <agrieve@chromium.org> Reviewed-by:
Samuel Huang <huangs@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#532553}
-
Zentaro Kavanagh authored
- Makes NTLMv2 the default version. - This implicitly disables NTLMv1. - Leaving the flag available for the first release with the default changed. - Subsequent release will remove the flag but leave a policy. BUG=chromium:22532 Change-Id: Ibb2778806b2a19b70abbc5300d20e06327077fb8 Reviewed-on: https://chromium-review.googlesource.com/885509 Commit-Queue: Zentaro Kavanagh <zentaro@chromium.org> Reviewed-by:
Asanka Herath <asanka@chromium.org> Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Cr-Commit-Position: refs/heads/master@{#532552}
-
Benjamin Shaya authored
Bug: b/72556352 Test: cast_audio_backend_unittests, on device Change-Id: I1696bce76de6aa311cc8b25b9ff3f445fb23e9d9 Reviewed-on: https://chromium-review.googlesource.com/889503 Commit-Queue: Benjamin Shaya <bshaya@chromium.org> Reviewed-by:
Kenneth MacKay <kmackay@chromium.org> Cr-Commit-Position: refs/heads/master@{#532551}
-
Raphael Kubo da Costa authored
tools/binary_size/libsupersize/testdata/mock_output_directory/obj/third_party/icu was being wrongly identified by licenses.py as missing a README.chromium. Bug: 39240 Change-Id: I69227968fe716bae4bfb12734fc2098bfaf68d14 Reviewed-on: https://chromium-review.googlesource.com/886342 Commit-Queue: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> Reviewed-by:
Scott Graham <scottmg@chromium.org> Cr-Commit-Position: refs/heads/master@{#532550}
-
Chris Harrelson authored
OOPIF renderers can have the local root throttled. Bug: 798486 Change-Id: I56fde149e6ad75ad49c38839a0f619dc84129b6f Reviewed-on: https://chromium-review.googlesource.com/890288 Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
vmpstr <vmpstr@chromium.org> Cr-Commit-Position: refs/heads/master@{#532549}
-
Chris Harrelson authored
This reverts commit 484efec4. Reason for revert: Makes performance worse on the bots, not better. Unclear why. Original change's description: > [PE] Reduce copies of LayoutRect in PaintLayerClipper. > > Bug: 798378 > Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 > Change-Id: Ic3c0b29430b06e76a3c81e654bc780e4a969592d > Reviewed-on: https://chromium-review.googlesource.com/880403 > Commit-Queue: Chris Harrelson <chrishtr@chromium.org> > Reviewed-by: Stephen Chenney <schenney@chromium.org> > Cr-Commit-Position: refs/heads/master@{#532031} TBR=chrishtr@chromium.org,schenney@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 798378 Change-Id: I8c6ec640efffe8cd7e2adaacd2ecc47d469794bb Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Reviewed-on: https://chromium-review.googlesource.com/891559Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Cr-Commit-Position: refs/heads/master@{#532548}
-
rbpotter authored
Displays list of destinations in dialog. Selecting does not yet work. Bug: 773928 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I07cf498a25b248b2f6e11c13e09f139aebf20184 Reviewed-on: https://chromium-review.googlesource.com/875290 Commit-Queue: Rebekah Potter <rbpotter@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#532547}
-
Qiang Xu authored
changes: Add a switch to make the feature dev behind the flag. Bug: 805046 Test: unit_tests --gtest_filter=AboutFlagsHistogramTest* Change-Id: I1b63060cf6b08557d94447b4a87f9ab07b192e1c Reviewed-on: https://chromium-review.googlesource.com/890633Reviewed-by:
James Cook <jamescook@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Commit-Queue: Qiang Xu <warx@google.com> Cr-Commit-Position: refs/heads/master@{#532546}
-
Yunlian Jiang authored
We want to keep minimal symbols when remove_webcore_debug_symbols is set, so that we can get readable backtrace. On ChromeOS arm build, the size of debug file increases from 899MB to 1.244GB. It increases 245 MB. Bug: chromium:792999 Change-Id: Ibc238308754a2727505cfbac3ce24f7a70027529 Reviewed-on: https://chromium-review.googlesource.com/862607Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Ryo Hashimoto <hashimoto@chromium.org> Commit-Queue: Yunlian Jiang <yunlian@chromium.org> Cr-Commit-Position: refs/heads/master@{#532545}
-
erikchen authored
The current flakiness occurs in the form of a timeout waiting for profiling to start for renderers. On Android, there's a warm-up renderer that could start before ProfilingProcessHost gets a chance to start up - as such, it will never be profiled. This CL adds logic to force profiling to start for all renderers, which should fix the flakiness. This CL also fixes a bug in ProfilingClient, which was only keeping the most recent binding. Bug: 804412 Change-Id: I836e55650b30a6360e0bc0f9189aacb7a75ea0c9 Reviewed-on: https://chromium-review.googlesource.com/889999Reviewed-by:
Maria Khomenko <mariakhomenko@chromium.org> Commit-Queue: Erik Chen <erikchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#532544}
-
Daniel Cheng authored
Bug: 608780 Change-Id: I4b699a8322702e117a0e2a5b81b61fd294e781b5 Reviewed-on: https://chromium-review.googlesource.com/889522Reviewed-by:
Łukasz Anforowicz <lukasza@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#532543}
-
Nico Weber authored
R=dalecurtis@chromium.org Change-Id: If38dfc4fb4deb50f8e82fe89e4d98fef5fd81863 Reviewed-on: https://chromium-review.googlesource.com/889782Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#532542}
-
xdai authored
Bug: 761288 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I0630b778aa8b758c7742af15541e83162f13d431 Reviewed-on: https://chromium-review.googlesource.com/875165Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Commit-Queue: Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#532541}
-
bsheedy authored
Ports most of WebVrTransitionTest to have a WebXR equivalent. Does not port testNfcFiresVrdisplayactivate or testTrustedIntentAllowsAutoPresent since there is not currently an implemented equivalent of the functionality they test in WebXR. Bug: 804043 Change-Id: I20985416985ca777a541cf42e9a377c2c29a5456 Reviewed-on: https://chromium-review.googlesource.com/885098 Commit-Queue: Brian Sheedy <bsheedy@chromium.org> Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Cr-Commit-Position: refs/heads/master@{#532540}
-
Andrii Shyshkalov authored
R=dpranke@chromium.org, jbudorick@chromium.org No-Try: True Bug: 731553 Change-Id: I12cd97bfee4d1cc7bf81f5c990014a27335a1c50 Reviewed-on: https://chromium-review.googlesource.com/891666Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org> Cr-Commit-Position: refs/heads/master@{#532539}
-
Troy Hildebrandt authored
NewApi warnings were suppressed accidentally and an AssertionError constructor that requires API 19 was used. The NewApi warnings are back, so this fix avoids using the AssertionError, and throws the exceptions as they are. This is an accidental leftover from the previous fixes, and is blocking the CL that removes the NewApi error suppression. Bug: 805509,803484 Change-Id: Ib2cc11c3ffdcfc50a4618d98d016ab52e0f1f624 Reviewed-on: https://chromium-review.googlesource.com/891578Reviewed-by:
David Trainor <dtrainor@chromium.org> Commit-Queue: Troy Hildebrandt <thildebr@chromium.org> Cr-Commit-Position: refs/heads/master@{#532538}
-
Kevin Marshall authored
This is a reland of b2b018c5. Original change's description: > Build Fuchsia packages for test and executable targets. > > All targets that use the test() or fuchsia_executable_runner rules > will produce Fuchsia packages, which contain the test executable and > their runtime dependencies. > > The packages are modules which can be deployed in an already-running > system, as opposed to the current scheme which bakes the files into > the system boot image. > > Deployment and support for dynamic libraries will be addressed > in followup CLs. > > This CL also: > * Fixes PathService logic for packaged invocations. > * Adds a new "build_manifest.py" GN helper script. > * Fixes the dependency graph for Fuchsia runner script generation > so that it accurately captures the real dependency ordering. > > > Bug: 796779 > Change-Id: I4e3a38e0075573b328ad98425cc493e28cff1ca4 > Reviewed-on: https://chromium-review.googlesource.com/841749 > Commit-Queue: Kevin Marshall <kmarshall@chromium.org> > Reviewed-by: Wez <wez@chromium.org> > Reviewed-by: Daniel Cheng <dcheng@chromium.org> > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > Reviewed-by: Sergey Ulanov <sergeyu@chromium.org> > Cr-Commit-Position: refs/heads/master@{#531288} Bug: 796779 Change-Id: I8c365a51abb49c2542aec8f66073e7fb7217cf75 Reviewed-on: https://chromium-review.googlesource.com/886982 Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Scott Graham <scottmg@chromium.org> Reviewed-by:
Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#532537}
-
Kristian H. Kristensen authored
Upstream has allocated DRM_FORMAT_MOD_INVALID as a special modifier that indicates the absence of a modifier. This is the legacy mode where the kernel gets the tiling/layout information through back channels, typically as a property of the BO. It's a little more concise that passing addfb_flags around as we did before and can be encoded into the NativePixmap handle as well. Bug: b:70546200, b:71416883, chromium:789292, b:69238712, b:68003124 Change-Id: I4340355e56d4117afebb06e1d96d4f8b93900a6e Reviewed-on: https://chromium-review.googlesource.com/885904 Commit-Queue: Kristian H. Kristensen <hoegsberg@chromium.org> Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Cr-Commit-Position: refs/heads/master@{#532536}
-
Allen Bauer authored
Ensure focusability is enabled along with the correct tool-tip. Bug: 806706 Change-Id: Ic60278a2d57f1c23cf36c8633994eb39fc7a5417 Reviewed-on: https://chromium-review.googlesource.com/890388Reviewed-by:
Bret Sepulveda <bsep@chromium.org> Commit-Queue: Allen Bauer <kylixrd@chromium.org> Cr-Commit-Position: refs/heads/master@{#532535}
-
Brett Wilson authored
Removes myself from all owners files except tools/gn. Replace myself with dpranke for owners of BUILDCONFIG.gn TBR=jam@chromium.org Change-Id: I015c6724ba04c07a9954107e1f5319ff3ef480ce Reviewed-on: https://chromium-review.googlesource.com/891669Reviewed-by:
Brett Wilson <brettw@chromium.org> Commit-Queue: Brett Wilson <brettw@chromium.org> Cr-Commit-Position: refs/heads/master@{#532534}
-
Christopher Grant authored
This lets additional non-RenderText tests leverage the RenderTextTestApi class. Put the class to immediate use in a VR UI test. BUG= Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_vr;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: Idf4d65a8e1b44430da72fe4bd5e3df6efb54719d Reviewed-on: https://chromium-review.googlesource.com/881521 Commit-Queue: Christopher Grant <cjgrant@chromium.org> Reviewed-by:
Michael Wasserman <msw@chromium.org> Cr-Commit-Position: refs/heads/master@{#532533}
-
Jay Civelli authored
SandboxedUnpacker::MessageCatalogsSanitized() does fall through some error cases triggering a NOTREACHED. Bug: 806926,177475 Change-Id: I9aaf62d1197a5885ab8871ca93197c6cb11cfdac Reviewed-on: https://chromium-review.googlesource.com/891620 Commit-Queue: Nico Weber <thakis@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#532532}
-
Koji Ishii authored
This patch adds IsInlineBox() and IsInline() to NGPhysicalFragment as we need claer distinction of inline boxes in NGPaint. Also anonymous fragment was removed. This fragment type was used to create an anonymous fragment for inline children, where two fragments are generated for one LayoutBlockFlow. This was changed to create line boxes directly under the parent box fragment in line-by-line refactoring by ikilpatrick@. One crash was upgraded to failure because the logic to determine anonymous fragment was wrong when ::first-line was used, and now it is gone. Bug: 636993, 714962 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_layout_ng Change-Id: Iac918830f1696789008376e77d36557e373236f8 Reviewed-on: https://chromium-review.googlesource.com/890878Reviewed-by:
Emil A Eklund <eae@chromium.org> Commit-Queue: Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#532531}
-
Yuke Liao authored
This CL adds an argument option to print out debug info for diagnostics. Bug: 801231 Change-Id: I53b23c6569c9938ef4c5b5a786ceaeee751ffc5d Reviewed-on: https://chromium-review.googlesource.com/871506Reviewed-by:
Abhishek Arya <inferno@chromium.org> Commit-Queue: Yuke Liao <liaoyuke@chromium.org> Cr-Commit-Position: refs/heads/master@{#532530}
-
Sean Kau authored
Change-Id: I31e3e705624cab5cd5005fe46f3c88d2517c549d Reviewed-on: https://chromium-review.googlesource.com/887284Reviewed-by:
Bartosz Fabianowski <bartfab@chromium.org> Commit-Queue: Sean Kau <skau@chromium.org> Cr-Commit-Position: refs/heads/master@{#532529}
-
Samuel Huang authored
This reverts commit f9a22f3e. Reason for revert: <INSERT REASONING HERE> Original change's description: > Oilpan: Immediatelly promptly free objects. > > This CL brings the following changes to promptly freeing and coalescing: > 1) Promptly freed objects on already swept pages are immediately added to the free list. > 2) For promptly freed objects on not already swept pages we only clear the mark bit. > 3) The promptly_freed_size_ counter is explicitly set to 0 before sweeping because sweeping will take care of coalescing as well. > 4) The dead bit is removed. > Note that coalescing before sweeping completed can not happen. > > Future outlook: As a next step we will evaluate if we need coalescing and if we need it we have to make it jank friendly. > > Bug: chromium:804279, chromium:633030 > Change-Id: I35dfae80ae0e7ed6cfbc91877d97d0b5fc26498e > Reviewed-on: https://chromium-review.googlesource.com/873974 > Commit-Queue: Hannes Payer <hpayer@chromium.org> > Reviewed-by: Kentaro Hara <haraken@chromium.org> > Reviewed-by: Michael Lippautz <mlippautz@chromium.org> > Cr-Commit-Position: refs/heads/master@{#532509} TBR=haraken@chromium.org,hpayer@chromium.org,mlippautz@chromium.org Change-Id: I868bc9b51c18a546994de93a3a8ef80362b0ba19 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: chromium:804279, chromium:633030 Reviewed-on: https://chromium-review.googlesource.com/891640Reviewed-by:
Samuel Huang <huangs@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#532528}
-
Raymond Toy authored
Setting the pan attribute will set the value immediately instead of dezippering from the current value to the new value. Chromium Feature: https://www.chromestatus.com/features/5287995770929152 Intent to ship: https://groups.google.com/a/chromium.org/d/msg/blink-dev/YKYRrh0nWMo/aGzd3049AgAJ Bug: 752985 Test: StereoPanner/dezipper.html Change-Id: I13815d7cb3a6d4ea93dd8f0f1bab739e6768e561 Reviewed-on: https://chromium-review.googlesource.com/607028 Commit-Queue: Raymond Toy <rtoy@chromium.org> Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Cr-Commit-Position: refs/heads/master@{#532527}
-
Helen Li authored
All socket writes need to be annotated with traffic annotation tag. This CL adds this requirement to the API. Bug: 721401 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Change-Id: Iee211a7812ba074f2788c879d0bc4b715e178fde Reviewed-on: https://chromium-review.googlesource.com/881425Reviewed-by:
Ramin Halavati <rhalavati@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Randy Smith <rdsmith@chromium.org> Commit-Queue: Helen Li <xunjieli@chromium.org> Cr-Commit-Position: refs/heads/master@{#532526}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/d1434c048145..e4741fd0f2bc $ git log d1434c048..e4741fd0f --date=short --no-merges --format='%ad %ae %s' 2018-01-25 lucferron Vulkan: Begin implementing caps mappings Created with: roll-dep src/third_party/angle The AutoRoll server is located here: https://angle-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_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=ynovikov@chromium.org Change-Id: Id100844c51b2eb57e54b82ba0e1cdadc2db93713 Reviewed-on: https://chromium-review.googlesource.com/891300 Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#532525}
-
Raymond Toy authored
Remove dezippering so that when the gain value is set, the output gain immediately snaps to the value, instead of exponentially approaching the target value. Chromium Feature: https://www.chromestatus.com/features/5287995770929152 Intent to ship: https://groups.google.com/a/chromium.org/d/msg/blink-dev/YKYRrh0nWMo/aGzd3049AgAJ Bug: 555647 Test: Gain/dezipper.html Change-Id: I31c2b067c9eeade4127195b2eb9bc3b716f308b5 Reviewed-on: https://chromium-review.googlesource.com/602604Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Commit-Queue: Raymond Toy <rtoy@chromium.org> Cr-Commit-Position: refs/heads/master@{#532524}
-
Tom Sepez authored
This is a content/ concept that can remain soley in content/, and it turns out the zygote doesn't do anything with it. Change-Id: I91f81af707532c81f6fcc0d2fce6eea233ba3c27 Reviewed-on: https://chromium-review.googlesource.com/887822 Commit-Queue: Tom Sepez <tsepez@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Cr-Commit-Position: refs/heads/master@{#532523}
-
Chromium WPT Sync authored
Using wpt-import in Chromium b04cb83b. With Chromium commits locally applied on WPT: 9f32e9c0 "S13nServiceWorker: Add tests for network fallback for navigations with request bodies" Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/11283 Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md TBR=leon.han@intel.com No-Export: true Change-Id: I62cd59f2f13776df7201c3398ac643cef9cd8d0a Reviewed-on: https://chromium-review.googlesource.com/889773 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by:
Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#532522}
-
https://skia.googlesource.com/skia.git/+log/cca86f386cfd..11e5bff1594c $ git log cca86f386..11e5bff15 --date=short --no-merges --format='%ad %ae %s' 2018-01-29 ethannicholas workaround for Intel SPIR-V OpCompositeConstruct bug 2018-01-29 angle-skia-autoroll Roll skia/third_party/externals/angle2/ d1434c048..e4741fd0f (1 commit) Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. 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=bungeman@chromium.org Change-Id: I1ef5368b90cf1e275c819defc640d7b41cbbf227 Reviewed-on: https://chromium-review.googlesource.com/891422 Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by:
skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#532521}
-
xdai authored
Revert "Cros splitscreen: Disable the splitscreen for M65 stable but keep it enabled for all other channels." This reverts commit ddccd3f6: https://chromium-review.googlesource.com/c/chromium/src/+/869196 M65 has been cut. This CL is no longer needed. Revert it. Bug: 800501 TBR: oshima@chromium.org Change-Id: I1943f27874fa83b67ca7d42e1b292f93f52f86a0 Reviewed-on: https://chromium-review.googlesource.com/887878Reviewed-by:
Xiaoqian Dai <xdai@chromium.org> Commit-Queue: Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#532520}
-
Yi Gu authored
Patch https://chromium-review.googlesource.com/c/chromium/src/+/742162 got reverted because it caused cc_unittest failure on CFI bot. This patch fixed the bug. Commit message from the original patch: The current cc/animations logic assumes a single animation has a single keyframe effect and can only affect a single layer. To enable animations with multiple keyframe effects, cc::AnimationPlayer need to support multiple AnimationTickers each corresponding to one keyframe effect. Currently there is a 1:1 relationship between AnimationPlayer and AnimationTicker. This patch is to extend it to 1:n. Here is a summary of changes: - Introduce a sub-class of AnimationPlayer, a.k.a SingleTickerAnimationPlayer, to handle the existing logic (single effect). SingleTickerAnimationPlayer owns only one AnimationTicker as the AnimationPlayer does today. - Currently a AnimationTicker is created upon creating AnimationPlayer. In this patch, tickers are created separately and added to the player afterwards. Tickers that the player owns may belong to different targets therefore the player needs to coordinate with AnimationHost regarding this situation. - Adjust existing unit tests according to the changes above. Bug: 767043 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Change-Id: If21bad1285c35bbc048fef6b619c8272c0760551 Reviewed-on: https://chromium-review.googlesource.com/890724Reviewed-by:
Ian Vollick <vollick@chromium.org> Commit-Queue: Yi Gu <yigu@chromium.org> Cr-Commit-Position: refs/heads/master@{#532519}
-
Eric Lawrence authored
The domain cdn.ampproject.org and its subdomains should be preloaded for HSTS and pin to a Google certificate chain. TBR=palmer@chromium.org Change-Id: I5c0edd88b9cda350ab4c77d59f3d8b650d674518 Reviewed-on: https://chromium-review.googlesource.com/890045Reviewed-by:
Eric Lawrence <elawrence@chromium.org> Commit-Queue: Eric Lawrence <elawrence@chromium.org> Cr-Commit-Position: refs/heads/master@{#532518}
-
Sam McNally authored
//chrome/browser correctly lists //chrome/common:service_process_mojom in its public_deps. However, //chrome/browser/extensions and //chrome/browser/ui are listed in allow_circular_includes_from, allowing them to include headers from //chrome/browser without a dependency. Add explicit dependencies from //chrome/browser/extensions and //chrome/browser/ui to //chrome/common:service_process_mojom. Bug: 805916 Change-Id: I83c2c7588e8056d413b9cccc8f5eceeb203986d7 Reviewed-on: https://chromium-review.googlesource.com/890686 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#532517}
-