- 11 Jul, 2018 40 commits
-
-
Francois Doray authored
Previously, TabManager::PerformStateTransitions() could be called repeatedly and needlessly while a tab is being discarded: - TabManager::PerformStateTransitions() Transitions a LifecycleUnit to PENDING_DISCARD. - TabManager::PerformStateTransitions() Calls CanFreeze() to check if the LifecycleUnit can be frozen. CanFreeze() returns true even though the LifecycleUnit is already being discarded. Calls Freeze(), which transitions the LifecycleUnit to PENDING_FREEZE. Calls CanDiscard() to check if the LifecycleUnit can be discarded. CanDiscard() returns true. Calls Discard(kProactive) to discard the LifecycleUnit. ** Since a LifecycleUnit was discarded, another call to PerformStateTransitions() is scheduled immediately. ** - TabManager::PerformStateTransitions() Called repeatedly until the LifecycleUnit transitions to DISCARDED. This CL fixes the issue by returning false from CanFreeze() and Freeze() for a LifecycleUnit that is being discarded. Bug: 775644 Change-Id: I4de25dfe7d569f61d0eef988b217203eeae6f006 Reviewed-on: https://chromium-review.googlesource.com/1132343Reviewed-by:
Will Harris <wfh@chromium.org> Reviewed-by:
Sébastien Marchand <sebmarchand@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#574158}
-
Saman Sami authored
This will allow us to see these events for all clients and not just RenderWidgets. Also will make it work with OOP-D Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel Change-Id: Id7a65a0129d27821797f8a46408ece32c580fc3b Reviewed-on: https://chromium-review.googlesource.com/1132323Reviewed-by:
Fady Samuel <fsamuel@chromium.org> Commit-Queue: Saman Sami <samans@chromium.org> Cr-Commit-Position: refs/heads/master@{#574157}
-
Nico Weber authored
Also add a data dep that's necessary (but apparently not sufficient) for cast_shell_browsertests to run on swarming. Bug: 861753, 861843 Change-Id: Ib10a8589c1349ac70dc4d4358395af6b2867d16b Reviewed-on: https://chromium-review.googlesource.com/1133201Reviewed-by:
Luke Halliwell <halliwell@chromium.org> Commit-Queue: Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#574156}
-
huangxueqing authored
This is a reland of 6d48958d Don't check acceptable scheme links since UrlUtilities.isAcceptedScheme() was native function, libchrome.so had not loaded when handle intent. Original change's description: > Ignore Intent filters with wildcard hosts when handling links. > > If the Android device has a package installed that declares > an Intent filter with `android:host="*"`, Chrome will launch > the Intent picker UX whenever a person taps a link. > This is a poor user experience. (Using `android:host="*"` > arguably doesn't make much sense; normally, Intent filters > would use `*` to match subdomains such as *.google.com.) Thus, > skip Intent filters with such wildcard hosts when handling > acceptable scheme links. > > R=dtrainor@chromium.org > > Bug: 841133 > Change-Id: I3cb14309ed53e0bd623ed0da59af6635391a8718 > Reviewed-on: https://chromium-review.googlesource.com/1053847 > Reviewed-by: Michael Thiessen <mthiesse@chromium.org> > Reviewed-by: Chris Palmer <palmer@chromium.org> > Reviewed-by: Maria Khomenko <mariakhomenko@chromium.org> > Commit-Queue: Michael Thiessen <mthiesse@chromium.org> > Cr-Commit-Position: refs/heads/master@{#564487} Bug: 841133 Change-Id: Id2fd7f7364eb6c70280b29a1f71783a2ee89747b Reviewed-on: https://chromium-review.googlesource.com/1096554Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Reviewed-by:
Chris Palmer <palmer@chromium.org> Reviewed-by:
Maria Khomenko <mariakhomenko@chromium.org> Commit-Queue: Yaron Friedman <yfriedman@chromium.org> Cr-Commit-Position: refs/heads/master@{#574155}
-
Chris Sharp authored
The main changes were: -converting LOG(INFO) to VLOG(1) -Removing usages of Time::FromInternalValue Bug: 830892 Change-Id: I117d6d605b5ca0b82ea7d509a127fbf316f483b0 Reviewed-on: https://chromium-review.googlesource.com/1130103 Commit-Queue: Chris Sharp <csharp@chromium.org> Reviewed-by:
proberge <proberge@chromium.org> Cr-Commit-Position: refs/heads/master@{#574154}
-
Gauthier Ambard authored
This CL removes the autolayout constraints on the TabGrid button in the toolbar and instead positions it using frames. Bug: 862576 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I5eda2cc58ee38228e40870f723315bc91ac6953f Reviewed-on: https://chromium-review.googlesource.com/1133167Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Commit-Queue: Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#574153}
-
Anthony Vallee-Dubois authored
The pref was gated on being in the Heuristic Model experiment, which isn't necessarily the case anymore. The pref should always be registered when the Heuristic Model is chosen. Bug: 862229 Change-Id: I41fd77334edac643f43c638a6d56abc408242a53 Reviewed-on: https://chromium-review.googlesource.com/1131814Reviewed-by:
Michael Martis <martis@chromium.org> Commit-Queue: anthonyvd <anthonyvd@chromium.org> Cr-Commit-Position: refs/heads/master@{#574152}
-
Ian Clelland authored
This allows debug messages to print sandbox flags in a convenient binary format, rather than outputting them as decimal numbers or 4-byte arrays. This means that you can easily add debug statements for sandboxing code like: DLOG(INFO) << "The sandbox flags here look like " << sandbox_flags_; rather than having to cast: DLOG(INFO) << "The sandbox flags here look like " << std::bitset<32>(static_cast<int>(sandbox_flags_)); It also changes the test output from EXPECT_EQ failures from looking like: ../../content/browser/some_browsertest.cc:12345: Failure Expected: blink::WebSandboxFlags::kAll & ~blink::WebSandboxFlags::kScripts & ~blink::WebSandboxFlags::kAutomaticFeatures Which is: 4-byte object <6F-FF FF-FF> To be equal to: root->child_at(1)->effective_frame_policy().sandbox_flags Which is: 4-byte object <FF-FA FF-FF> to the more reasonable: ../../content/browser/some_browsertest.cc:12345: Failure Expected: blink::WebSandboxFlags::kAll & ~blink::WebSandboxFlags::kScripts & ~blink::WebSandboxFlags::kAutomaticFeatures Which is: 11111111111111111111111101101111 To be equal to: root->child_at(1)->effective_frame_policy().sandbox_flags Which is: 11111111111111111111101011111111 in which single bit errors can easily be spotted. Change-Id: Ibc9020d67654c555e1c70dcb99829e2eb29d0b3c Reviewed-on: https://chromium-review.googlesource.com/772320Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Ian Clelland <iclelland@chromium.org> Cr-Commit-Position: refs/heads/master@{#574151}
-
Maxim Kolosovskiy authored
This CL increases |kMaxFieldsOnTheForm| to 100 in |FormStructure::IsMalformed|. It allows to crowdsource more forms. See the bug for details. Later the parameter will be increased even more and will be finchable. UMA histogram is introduced to monitor the size of forms Autofill has to process. TODO: Finch-controlled threshold and UKM metric. Bug: 857454 Change-Id: I50c1382dd36e2c707cd34f1a4f139413d9ea6026 Reviewed-on: https://chromium-review.googlesource.com/1131457Reviewed-by:
Roger McFarlane <rogerm@chromium.org> Reviewed-by:
Dominic Battré <battre@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Commit-Queue: Maxim Kolosovskiy <kolos@chromium.org> Cr-Commit-Position: refs/heads/master@{#574150}
-
pdfium-chromium-autoroll authored
https://pdfium.googlesource.com/pdfium.git/+log/cbed949bee84..b1a4db5551ca git log cbed949bee84..b1a4db5551ca --date=short --no-merges --format='%ad %ae %s' 2018-07-11 thestig@chromium.org Fix some nits in fxjs code. Created with: gclient setdep -r src/third_party/pdfium@b1a4db5551ca The AutoRoll server is located here: https://pdfium-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. TBR=dsinclair@chromium.org Change-Id: I520096872b1ab632c4dc59d4c653620e08f0fc52 Reviewed-on: https://chromium-review.googlesource.com/1133238Reviewed-by:
pdfium-chromium-autoroll <pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: pdfium-chromium-autoroll <pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#574149}
-
Morten Stenshorne authored
When discarding intrinsic block size for contain:size, we need to reset intrinsic size to the border+padding sum (not zero), since intrinsic_block_size_ is the size of the border box, not the content box. Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng Change-Id: I29195a09a6d47b9e3c2a82da3be6f528aac25c68 Reviewed-on: https://chromium-review.googlesource.com/1133163 Commit-Queue: Christian Biesinger <cbiesinger@chromium.org> Reviewed-by:
Christian Biesinger <cbiesinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#574148}
-
Javier Ernesto Flores Robles authored
Currently an instance of the input accessory view controller is created per tab view the tab helper. This CL changes that to instead only have one instance per BVC. This the first step to start adopting the new coordinators architecture, which will be used in to present the manual fill view controllers from the input accessory view. The next step woould be fixing dependncies in order to move the coordinator to ui folder. Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Id0cc93c57e18f51f0208c38ddcdf4e3b8e9e90ac Bug: 845472 Reviewed-on: https://chromium-review.googlesource.com/1103126 Commit-Queue: Javier Ernesto Flores Robles <javierrobles@chromium.org> Reviewed-by:
Mark Cogan <marq@chromium.org> Reviewed-by:
Moe Ahmadi <mahmadi@chromium.org> Cr-Commit-Position: refs/heads/master@{#574147}
-
Emily Hanley authored
TBR=nednguyen@google.com NOTRY=True Bug: 757933 Change-Id: Ie817891643082472fc46805ef4a2ffe43356f2bf Reviewed-on: https://chromium-review.googlesource.com/1133278Reviewed-by:
Emily Hanley <eyaich@chromium.org> Commit-Queue: Emily Hanley <eyaich@chromium.org> Cr-Commit-Position: refs/heads/master@{#574146}
-
Peter Mayo authored
This is passing at ToT. The bug reference here looks like an old or original import. I wonder when this started working, but it does not seem worth chasing down. Bug: 706118 Change-Id: Ie8163cb204ed03f9ab04524400b84bb8d3e47232 Reviewed-on: https://chromium-review.googlesource.com/1132558Reviewed-by:
Florin Malita <fmalita@chromium.org> Commit-Queue: Peter Mayo <petermayo@chromium.org> Cr-Commit-Position: refs/heads/master@{#574145}
-
chcunningham authored
This changes the interface such that saves can only performed via the SaveCB. Internally the CB is weakly bound to the perf history so post destruction saves are quietly dropped. This unblocks re-landing https://chromium-review.googlesource.com/c/chromium/src/+/1123687/1 The above CL will give incognito profiles a distinct VideoDecodePerfHistory instance. Incognito profile's are rapidly deleted when the last tab closes, creating a race condition for any per stats that are inbound from video's on that tab. Now, using the SaveCB, those late stats will be safely dropped. Bug: 855631, 855215, 796280 Change-Id: Ia978dbca14d5584ca92301aee84020437a90311e Reviewed-on: https://chromium-review.googlesource.com/1123396Reviewed-by:
Markus Heintz <markusheintz@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Chrome Cunningham (In Paris) <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#574144}
-
John Barboza authored
Introduces `is_aix` variable and suppress non-virtual-dtor warning. Change-Id: Iab0ceee2309d96b1efcb09fadc710362159da752 Reviewed-on: https://chromium-review.googlesource.com/1103535Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Michael Achenbach <machenbach@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#574143}
-
Mihai Sardarescu authored
This CL add the activity and interactions sync settings. This allows the user to control whether event logger is enabled. This is controlled internally by the sync data type USER_EVENTS. Cq-Include-Trybots: luci.chromium.try:closure_compilation Change-Id: If32166e4b6d8eb3c25d28a8ada67491721cf59d8 Reviewed-on: https://chromium-review.googlesource.com/1126239 Commit-Queue: Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Reviewed-by:
Thomas Tangl <tangltom@chromium.org> Cr-Commit-Position: refs/heads/master@{#574142}
-
Mark Pilgrim authored
Bug: 714018 Change-Id: I5f237f6be4311ebd36262354aef1256cd06d44eb Reviewed-on: https://chromium-review.googlesource.com/1131995Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Commit-Queue: Mark Pilgrim <pilgrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#574141}
-
Nico Weber authored
gn now lives at https://gn.googlesource.com/gn/ , so delete src/tools/gn, and bot configuration to run gn_unittests. Bug: 859536 Change-Id: I64f4d4fb00349cb8d7143d0a1b96088cc173e27c Reviewed-on: https://chromium-review.googlesource.com/1129822 Commit-Queue: Nico Weber <thakis@chromium.org> Reviewed-by:
Brett Wilson <brettw@chromium.org> Cr-Commit-Position: refs/heads/master@{#574140}
-
Michael Lippautz authored
Page::main_frame_ is used during constructing Page::visual_viewport_ (VisualViewport) which imples that the field should be constructed before using. allocatd memory. Note: In practice this works because Oilpan currently 0-fills all newly Change-Id: I103d90c17d649dffbce2c9ac70a0a6a9cac9448b Reviewed-on: https://chromium-review.googlesource.com/1133159Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#574139}
-
Greg Kraynov authored
Change-Id: I8625303764e75b947515f2bcdaf67fa092f925d5 Reviewed-on: https://chromium-review.googlesource.com/1133173Reviewed-by:
Alexander Timin <altimin@chromium.org> Commit-Queue: Greg Kraynov <kraynov@chromium.org> Cr-Commit-Position: refs/heads/master@{#574138}
-
Ramin Halavati authored
Change-Id: I4d6e738dba8a06cd62d8d03b41492a3ebecce88f TBR: georgesak@chromium.org Reviewed-on: https://chromium-review.googlesource.com/1133162Reviewed-by:
Ramin Halavati <rhalavati@chromium.org> Commit-Queue: Ramin Halavati <rhalavati@chromium.org> Cr-Commit-Position: refs/heads/master@{#574137}
-
Henrique Grandinetti authored
On cl https://chromium-review.googlesource.com/c/chromium/src/+/1112051, I changed the override part of UsageTimeLimit policy from a single object to an array. On this cl I change the usage_time_limit_processor to handle this as well. Currently, the only override considered is the latest one. Bug: 823536 Change-Id: Ia5842edec3fc6127115d7f7b988ec43c437b1713 Reviewed-on: https://chromium-review.googlesource.com/1127399Reviewed-by:
Jacob Dufault <jdufault@chromium.org> Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Commit-Queue: Henrique Grandinetti <hgrandinetti@google.com> Cr-Commit-Position: refs/heads/master@{#574136}
-
Sebastien Marchand authored
Bug: 775644 Change-Id: I63764d060763c2040086c84ae02517f7bea3af52 Reviewed-on: https://chromium-review.googlesource.com/1132399Reviewed-by:
François Doray <fdoray@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#574135}
-
Gauthier Ambard authored
This CL changes the location bar background to be less visible in non-incognito. Also it updates the search button to be the same background color as the location bar. Bug: 862518 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I7e25c2b093161524cb38619dcc834776e0891cc8 Reviewed-on: https://chromium-review.googlesource.com/1133008Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Commit-Queue: Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#574134}
-
Miguel Casas authored
This CL is a spin off of crrev.com/c/1130662/4 with the old data type uses (e.g. int8, int16, int32) corrected (e.g. int8_t, int16_t, int32_t) etc. https://chromium.googlesource.com/libyuv/libyuv.git/+log/4d67b3e851b1..55f5d91f11f9 $ git log 4d67b3e85..55f5d91f1 --date=short --no-merges --format='%ad %ae %s' 2018-07-09 fbarchard Disable old int types by default. 2018-07-03 fbarchard msa use void * for loads 2018-06-29 johannkoenig xcode: disable avx512 support Created with: roll-dep src/third_party/libyuv Bug: libyuv:807 Test: local builds and try bots for libyuv pass. Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel Change-Id: I60d62b047b04c6c0f821df15a5f5b4be85cf331c Reviewed-on: https://chromium-review.googlesource.com/1131560 Commit-Queue: Miguel Casas <mcasas@chromium.org> Reviewed-by:
Frank Barchard <fbarchard@chromium.org> Reviewed-by:
Emircan Uysaler <emircan@chromium.org> Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Reviewed-by:
Dan Sanders <sandersd@chromium.org> Cr-Commit-Position: refs/heads/master@{#574133}
-
Gauthier Ambard authored
This CL prepares FindInPage to have its UI updated for UI refresh. A new protocol for both UI elements and a new shared constants file are added. The old UIView is renamed to LegacyFindBarView. Bug: 805504 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Ic732a11c38b8b068d59138d9073f988a2b206843 Reviewed-on: https://chromium-review.googlesource.com/1131951Reviewed-by:
Stepan Khapugin <stkhapugin@chromium.org> Commit-Queue: Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#574132}
-
Greg Kraynov authored
Bug: 841735 Change-Id: I95f2c967423fd5419002527c2b18041b8e5d499a Reviewed-on: https://chromium-review.googlesource.com/1131746 Commit-Queue: Greg Kraynov <kraynov@chromium.org> Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Cr-Commit-Position: refs/heads/master@{#574131}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/08859344..8885d8b2 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;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I2f2ca58a2d7665e92d0f7164307a33bf75ab5d40 Reviewed-on: https://chromium-review.googlesource.com/1132851Reviewed-by:
V8 Autoroller <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: V8 Autoroller <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#574130}
-
“asish.singh” authored
Replace all hardcoded months in the tests by NextMonth() function. BUG=792475 Change-Id: I6ccfdbd7c8dce43b8156e540bb17b6379f43dba5 Reviewed-on: https://chromium-review.googlesource.com/1133038Reviewed-by:
Prashant Nevase <prashant.n@samsung.com> Reviewed-by:
Sebastien Seguin-Gagnon <sebsg@chromium.org> Commit-Queue: Prashant Nevase <prashant.n@samsung.com> Cr-Commit-Position: refs/heads/master@{#574129}
-
Javier Ernesto Flores Robles authored
This CL fixes a cosmetic issue where the autofill bar was side to side while the keyboard wasn't. The code mimics what Cocoa does when an UITextField has an InputAccessoryView. Before: https://goo.gl/fzjqtq After: https://goo.gl/RU7ZkU Bug: 847523 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I7277c456d2ce307c1d29484340a4bc96abc3491a Reviewed-on: https://chromium-review.googlesource.com/1122400Reviewed-by:
Moe Ahmadi <mahmadi@chromium.org> Commit-Queue: Javier Ernesto Flores Robles <javierrobles@chromium.org> Cr-Commit-Position: refs/heads/master@{#574128}
-
Fredrik Söderquist authored
Remove the methods in blink::TimerBase that either take or return a time delta as a double. These methods are mostly unused - a few calls to StartOneShot and NextFireInterval, and it should be preferable for new code to use the TimeDelta methods. The non-Delta-suffixed names are kept - i.e they take on the name of their removed equivalent where applicable. The few users of StartOneShot(double, ...) are open-coded instead, and uses of other methods are adjusted as needed. The unit tests for Timer is overhauled to use TimeTicks and TimeDelta throughout. Bug: 763980 Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_slimming_paint_v2;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I47c0449a9ea68e6e984c371e19f03f747bb5b1e0 Reviewed-on: https://chromium-review.googlesource.com/1131131 Commit-Queue: Fredrik Söderquist <fs@opera.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#574127}
-
Greg Kraynov authored
Bug: 859837 Change-Id: I1bc8a175055ddd5400a96ac97c86f2d71539e9f6 Reviewed-on: https://chromium-review.googlesource.com/1131934Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Commit-Queue: Greg Kraynov <kraynov@chromium.org> Cr-Commit-Position: refs/heads/master@{#574126}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 858ba7c4. With Chromium commits locally applied on WPT: a9045946 "Add a fail-fast for longtask layouttests" Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/21165 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 Directory owners for changes in this CL: alexander.shalamov@intel.com, kenneth.r.christiansen@intel.com, rijubrata.bhaumik@intel.com: external/wpt/web-nfc bjonesbe@adobe.com: external/wpt/css/css-shapes cbiesinger@chromium.org: external/wpt/css/css-flexbox chcunningham@chromium.org, wolenetz@chromium.org: external/wpt/media-source domenic@chromium.org, ricea@chromium.org: external/wpt/streams drott@chromium.org, kojii@chromium.org: external/wpt/css/css-fonts eae@chromium.org, szager@chromium.org: external/wpt/intersection-observer eroman@chromium.org, rsleevi@chromium.org: external/wpt/WebCryptoAPI foolip@chromium.org: external/wpt/fullscreen garykac@chromium.org: external/wpt/clipboard-apis jsbell@chromium.org: external/wpt/IndexedDB jsbell@chromium.org, mek@chromium.org: external/wpt/webstorage kojii@chromium.org: external/wpt/css/css-writing-modes kojii@chromium.org, mstensho@chromium.org: external/wpt/css/CSS2 nzolghadr@chromium.org, mustaq@chromium.org: external/wpt/pointerevents rego@igalia.com: external/wpt/css/css-ui external/wpt/css/selectors rouslan@chromium.org, mathp@chromium.org: external/wpt/payment-method-basic-card external/wpt/payment-method-id external/wpt/payment-request worker-dev@chromium.org: external/wpt/workers TBR=foolip No-Export: true Change-Id: I84c9c097b5067b4ab3706aaf97ab2f0b7b3c679b Reviewed-on: https://chromium-review.googlesource.com/1132850 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@{#574125}
-
Renee Wright authored
Change-Id: I0a0dd5bbc6d61b82015827e2a19f526f069412ed Reviewed-on: https://chromium-review.googlesource.com/1128789 Commit-Queue: Renée Wright <rjwright@chromium.org> Reviewed-by:
Nicholas Verne <nverne@chromium.org> Cr-Commit-Position: refs/heads/master@{#574124}
-
Sylvain Defresne authored
Bug: 798411 Change-Id: I67778d6987e52ecd556aba7c90428a7a6f933e00 Reviewed-on: https://chromium-review.googlesource.com/1129230Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Sylvain Defresne <sdefresne@chromium.org> Cr-Commit-Position: refs/heads/master@{#574123}
-
skia-chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/61cc9fabf255..2229b76258f7 git log 61cc9fabf255..2229b76258f7 --date=short --no-merges --format='%ad %ae %s' 2018-07-11 angle-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com Roll third_party/externals/angle2 569b9cb983b1..a6a7842fdbf5 (2 commits) Created with: gclient setdep -r src/third_party/skia@2229b76258f7 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;luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=robertphillips@chromium.org Change-Id: I39f36cc94a3d41809a91dd8eb2e7289c0a7b1ecb Reviewed-on: https://chromium-review.googlesource.com/1132655Reviewed-by:
skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#574122}
-
Tanja Gornak authored
TBR=pavely@chromium.org Bug: 799905 Change-Id: Ib736c2f4e74bd025c1f3a70fac59c4c8cbf78a4a Reviewed-on: https://chromium-review.googlesource.com/1125923 Commit-Queue: Tatiana Gornak <melandory@chromium.org> Reviewed-by:
Jan Krcal <jkrcal@chromium.org> Cr-Commit-Position: refs/heads/master@{#574121}
-
Matt Falkenhagen authored
Bug: 838410, 854993 Change-Id: I8babef268fe2dd299370904f30517aa1cacc0b72 Reviewed-on: https://chromium-review.googlesource.com/1132910Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Matt Falkenhagen <falken@chromium.org> Cr-Commit-Position: refs/heads/master@{#574120}
-
Dominik Röttsches authored
r572930 moved FontConfig out of process access from a global file descriptor to Mojo messages. In one instance, PepperFlashFontFileHost, an IPC performing FontConfig method was replaced with one that tries to access FontConfig inside the sandboxed process, which fails. The mimehandler process needs access to FontConfig as well for providing fonts matching to PDFium. This CL fixes mimehandler out of process font access and moves back to using the MatchFontWithFallback FontConfig logic which was previously used in this file, before it was moved to using Skia font matching like on Windows. This implies that on Linux additional font fallback logic is used again, which finds replacements for non-existing fonts such as SimSun. Bug: 862051 Change-Id: I67136d51b45f72db0ae74201353369e34885f2ef Reviewed-on: https://chromium-review.googlesource.com/1131938 Commit-Queue: Dominik Röttsches <drott@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#574119}
-