- 13 Apr, 2019 8 commits
-
-
Vlad Tsyrklevich authored
Currently, the allocation and deallocation stack traces are stored in separate 200 byte buffers. This change stores them together in a single 400-byte buffer so that deallocations can use any unused space from the allocation. This improves memory density for deallocations (which is usually what we care most about in UAFs) and does not affect allocations. Bug: 951410 Change-Id: I6fa36a80a605b16eb2d92919b3fd4a5ff60dfc84 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566455 Auto-Submit: Vlad Tsyrklevich <vtsyrklevich@chromium.org> Reviewed-by:
Vitaly Buka <vitalybuka@chromium.org> Commit-Queue: Vlad Tsyrklevich <vtsyrklevich@chromium.org> Cr-Commit-Position: refs/heads/master@{#650539}
-
Xiaoqian Dai authored
This is an initial CL to allow dragging overview window to snap to splitview in clamshell mode. - Add a feature flag "DragToSnapInClamshellMode" - In clamshell mode, split view mode behaviors are very different with that in tablet mode. Split view mode is only active during an overview session. Once the user has selected two windows to snap to both side of the screen, split view mode is no longer active. See https://drive.google.com/open?id=15A2CSJxxRfewbPzMvlhe5SmpST1TGJTC for demo. Bug: 890029 Change-Id: Iac9cc8f80b28df1d15b761fbb38e30b6a48c3214 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1559113 Commit-Queue: Xiaoqian Dai <xdai@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#650538}
-
Sinan Sahin authored
Bug: 951095 Change-Id: I7c0b4fcf529bddff9f8918d57ab707a860e7d505 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1562729Reviewed-by:
Becky Zhou <huayinz@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Sinan Sahin <sinansahin@google.com> Cr-Commit-Position: refs/heads/master@{#650537}
-
Matt Reynolds authored
When the network location provider is in use, Chrome periodically scans for nearby WiFi access points. The MAC addresses of these access points are sent to a Google service, which returns a position estimate. To limit network traffic when a device is not moving, a cache of recent position estimates is maintained. If the set of MAC addresses exactly matches a previous query, the cached estimate is used instead. This adds metrics for recording whether a cached value was used. It also records how many items were in the cache when the cache is queried. BUG=944320 Change-Id: I385e1f76099207dd9276edc258a958959945058f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1532255 Commit-Queue: Matt Reynolds <mattreynolds@chromium.org> Reviewed-by:
Brian White <bcwhite@chromium.org> Reviewed-by:
Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#650536}
-
Zhongyi Shi authored
https://quiche.googlesource.com/quiche.git/+log/9e84364c1893..546cc453efd0 $ git log 9e84364c1..546cc453e --date=short --no-merges --format='%ad %ae %s' 2019-04-12 zhongyi Add new methods to QuicFramer for controlling decrypters Created with: roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src Change-Id: Ie3637d319e7a674dad8482f4ae3ab49732e15360 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566714 Commit-Queue: Zhongyi Shi <zhongyi@chromium.org> Commit-Queue: Matt Mueller <mattm@chromium.org> Auto-Submit: Zhongyi Shi <zhongyi@chromium.org> Reviewed-by:
Matt Mueller <mattm@chromium.org> Cr-Commit-Position: refs/heads/master@{#650535}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/cd92a27aa122..0d6826ff6cd9 Created with: gclient setdep -r src-internal@0d6826ff6cd9 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=luci.chrome.try:linux-chromeos-chrome BUG=chromium:925042,chromium:932622,chromium:952397 TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I3ca87012827f0aef705302fce0f9704f9d6f6519 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566712Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650534}
-
Ehsan Karamad authored
The actual data type was removed in https://crrev.com/c/1555075. This CL removes the aliases SandboxFlag and SandboxFlags and uses WebSandboxFlags everywhere. This is purely mechanical and should not change any code behavior. TBR=haraken@chromium.org Bug: None Change-Id: Ia8f43ecbd4508ff2da2b8883e0f52f0de412bba9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565180Reviewed-by:
Ehsan Karamad <ekaramad@chromium.org> Commit-Queue: Ehsan Karamad <ekaramad@chromium.org> Cr-Commit-Position: refs/heads/master@{#650533}
-
Daniel Rubery authored
Javascript can only be invoked from the UI thread, so call over to the UI thread before sending CRSBLOG messages to the WebUI. This also fixes a bug where, if messages were sent before the WebUI had fully initialized, we would fail to execute the Javascript, causing a CHECK failure. Bug: 952333 Change-Id: I0b3a5eb90f8993c6e19d52179b727e8784139bcc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566618Reviewed-by:
Varun Khaneja <vakh@chromium.org> Commit-Queue: Daniel Rubery <drubery@chromium.org> Cr-Commit-Position: refs/heads/master@{#650532}
-
- 12 Apr, 2019 32 commits
-
-
Regan Hsu authored
This CL copies the settings-menu and settings-ui polymer components used by the currently combined OS and Browser settings page to the future exclusive OS settings page. Bug: 950007 Change-Id: Iae62bae39b89c841f53c1eca8a942ab8ee51c580 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1564804Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Reviewed-by:
May Lippert <maybelle@chromium.org> Commit-Queue: Regan Hsu <hsuregan@chromium.org> Cr-Commit-Position: refs/heads/master@{#650531}
-
Jonathan Metzman authored
This reverts commit 3b8a3ffc. Reason for revert: Breaks bots. Original change's description: > Don't build seed corpora in most configs and delete duplicated config > > Only build seed corpora where it is necessary, in order to reduce > build sizes. > > Bug: 952412 > Change-Id: I6e529226d4ba51fd547c1869525a9f094fdcd998 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566454 > Reviewed-by: Max Moroz <mmoroz@chromium.org> > Reviewed-by: Ben Pastene <bpastene@chromium.org> > Commit-Queue: Jonathan Metzman <metzman@chromium.org> > Cr-Commit-Position: refs/heads/master@{#650506} TBR=dpranke@chromium.org,mbarbella@chromium.org,mmoroz@chromium.org,bpastene@chromium.org,metzman@chromium.org Change-Id: I1f826c43ced0959d6ef86a657d6b5ac2bdcc0110 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 952412 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566728Reviewed-by:
Jonathan Metzman <metzman@chromium.org> Commit-Queue: Jonathan Metzman <metzman@chromium.org> Cr-Commit-Position: refs/heads/master@{#650530}
-
Esmael El-Moslimany authored
Bug: 736891 Change-Id: I0f0aaa2450fc430aeab26b7322447b9c00a35046 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565244 Commit-Queue: Esmael El-Moslimany <aee@chromium.org> Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Cr-Commit-Position: refs/heads/master@{#650529}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/09591b87bdf1..7d867277f805 git log 09591b87bdf1..7d867277f805 --date=short --no-merges --format='%ad %ae %s' 2019-04-12 capn@google.com Implement basic SPIR-V texture sampling 2019-04-12 chrisforbes@google.com Adjust matrix addressing to account for RowMajor/ColMajor 2019-04-12 chrisforbes@google.com Capture RowMajor/ColMajor decorations 2019-04-12 chrisforbes@google.com Fix handling of loads/stores of explicitly-laid-out objects Created with: gclient setdep -r src/third_party/swiftshader@7d867277f805 The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll 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=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 BUG=chromium:b/128690261,chromium:b/128690261,chromium:b/128690261 TBR=swiftshader-team+autoroll@chromium.org Change-Id: I58d2954c508e4889e48f49ae14fa95104886363d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566711Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650528}
-
Jimmy Gong authored
- Previous implementation of detected_printer_ppd_references_ used UniquePtrs to simulate optional PpdReference values to a map. - This change changes the UniquePtr to base::Optional. Bug: 932202 Test: browser_tests --gtest_filter=CrSettingsPrinting* Change-Id: I9131bef5140ea0c3cb115c489975fae959bea21e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1560494 Commit-Queue: jimmy gong <jimmyxgong@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Bailey Berro <baileyberro@chromium.org> Reviewed-by:
Zentaro Kavanagh <zentaro@chromium.org> Cr-Commit-Position: refs/heads/master@{#650527}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/330fbee5d870..3af5c4c3547b git log 330fbee5d870..3af5c4c3547b --date=short --no-merges --format='%ad %ae %s' 2019-04-12 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision f1e8910d..9ba7465f (650313:650428) Created with: gclient setdep -r src/third_party/webrtc@3af5c4c3547b The AutoRoll server is located here: https://autoroll.skia.org/r/webrtc-chromium-autoroll 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. BUG=chromium:None TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: I35878a0243232c894a2115771c420fee8e3c61c8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566288Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650526}
-
Yusuf Ozuysal authored
This is a UMA action that was added for HTS, but is missing from GTS. It triggers when the user creates a group via the "Create Group" button inside the tab switcher. BUG=952478 Change-Id: Ic5a7b090906ac979da77e633a6c9fd9afc2e8c58 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566718Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Yusuf Ozuysal <yusufo@chromium.org> Cr-Commit-Position: refs/heads/master@{#650525}
-
Evan Stade authored
CreateWindowResizer was unintentionally aborting early, before calling CreateWindowResizerForTabletMode. Thus it applied the resizable check to windows that shouldn't have gotten it, such as non-resizable ARC windows in tablet mode. Bug: 947769 Change-Id: If0863936c8bdb43513fd4b3d8ba39d597275d604 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565355 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Xiaoqian Dai <xdai@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#650524}
-
danakj authored
Remove caching of the OverscrollBehavior in OverscrollController, and then stop plumbing it through DidOverscroll, when RenderWidget can access the last set behaviour on its own. The WebLayerTreeView is a shortcut past the WebWidgetClient that is not needed now that we always composite. This works toward eliminating this extra API layer. More importantly this helps us Close/Restart the WebWidget parts of WebViewImpl by not requiring plumbing 2 pointers with slightly different lifetimes (WebLayerTreeView is created inside the Init of the WebWidgetClient). This will help avoid a bunch of complexity in creating WebFrameWidgets and other WebWidgets. R=dcheng@chromium.org Bug: 912193 Change-Id: Ib501ade7e2563dbfb856f3b7295038546cbc8915 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1554644 Commit-Queue: danakj <danakj@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#650523}
-
Cliff Smolinsky authored
This change adds LoadSystemLibrary to NativeLibrary to allow usage of the NativeLibrary abstraction when loading system dlls and prevent dll loading attacks. This change also moves ScopedNativeLibrary to base off of ScopedGeneric so that the scoped class gets all the benefits of ScopedGeneric without having to re-invent. Bug: 1551709 Change-Id: I17a14678687bd7d167ab0dad1cff5dbce53c3313 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1560294 Commit-Queue: Cliff Smolinsky <cliffsmo@microsoft.com> Reviewed-by:
Antoine Labour <piman@chromium.org> Reviewed-by:
Joe Downing <joedow@chromium.org> Reviewed-by:
Xiaohan Wang <xhwang@chromium.org> Reviewed-by:
Brandon Jones <bajones@chromium.org> Reviewed-by:
Greg Thompson <grt@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#650522}
-
Peter Kasting authored
Bug: 951038 Change-Id: I7f4c327d42f1f9a6f99b03f5f51e0f4684916656 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1562518 Commit-Queue: Peter Kasting <pkasting@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Taylor Bergquist <tbergquist@chromium.org> Cr-Commit-Position: refs/heads/master@{#650521}
-
Dan Beam authored
R=rbpotter@chromium.org BUG=none Change-Id: I9f2b04096548aeac6aac029ba1a02094b4fbc10a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566678 Commit-Queue: Dan Beam <dbeam@chromium.org> Commit-Queue: Rebekah Potter <rbpotter@chromium.org> Auto-Submit: Dan Beam <dbeam@chromium.org> Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Cr-Commit-Position: refs/heads/master@{#650520}
-
Peter Boström authored
This makes the Extensions menu use a standard title and close-x. The footer entry is easier to notice and understand. Removes work that's been done for custom headers. First-iteration work is not looking to introduce panes to this dialog. Bug: chromium:943702 Change-Id: Ic42fa05953be92f0a53448dc1a7f1c628a511dca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566619 Commit-Queue: Peter Boström <pbos@chromium.org> Commit-Queue: Taylor Bergquist <tbergquist@chromium.org> Reviewed-by:
Taylor Bergquist <tbergquist@chromium.org> Cr-Commit-Position: refs/heads/master@{#650519}
-
Simon Que authored
These categories are based on which version of the RBE backend the builders use. R=dpranke@chromium.org, hinoka@chromium.org, jbudorick@chromium.org Bug: 947436 Change-Id: I95540e17b6ff72f58f38e1943aa4b7f14b6588eb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1564286Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Simon Que <sque@chromium.org> Cr-Commit-Position: refs/heads/master@{#650518}
-
David Bienvenu authored
This reverts commit a394b883. Reason for revert: Caused a regression restoring minimized windows. crbug.com/952142 Original change's description: > Restore browser windows to correct desktop on Win10 > > Bug: 873414 > Change-Id: Iaffc14914d658866e9d1c7e1e794a8754a5ce9a9 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1559168 > Commit-Queue: David Bienvenu <davidbienvenu@chromium.org> > Reviewed-by: Bret Sepulveda <bsep@chromium.org> > Cr-Commit-Position: refs/heads/master@{#649726} TBR=bsep@chromium.org,davidbienvenu@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 873414 Change-Id: Ib475a3d98147b0b6f90e43619640768e0d226dce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566617Reviewed-by:
David Bienvenu <davidbienvenu@chromium.org> Commit-Queue: David Bienvenu <davidbienvenu@chromium.org> Cr-Commit-Position: refs/heads/master@{#650517}
-
Xiyuan Xia authored
Add an assert to catch the case where the derived tests forgot to call PerformanceTest::SetUpOnMainThread to start tracing. Bug: 945709 Change-Id: Id3a659f172f5fde09220003b7a3fc57f18c832fe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566610 Commit-Queue: Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#650516}
-
Natalie Chouinard authored
leveldb_proto databases will soon be migrated from unique LevelDB instances to a single shared underlying database. Because of this, we need to migrate to the new API to construct and initialize the database. Bug: 941796 Change-Id: Ic0462828c5dc1c026ffb08c2cec236f023b4478b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1559699Reviewed-by:
Patrick Noland <pnoland@chromium.org> Reviewed-by:
Gauthier Ambard <gambard@chromium.org> Reviewed-by:
ssid <ssid@chromium.org> Commit-Queue: Natalie Chouinard <chouinard@chromium.org> Cr-Commit-Position: refs/heads/master@{#650515}
-
Chris Harrelson authored
A synthetic mask layer is not needed if there is no content under it which draws. This patch implements that optimization, and also adds a new optimization to CompositedLayerMapping to set DrawsContent to false for layers which have empty size. The patch also removes one unused method from cc::Layer. Bug: 947715 Change-Id: I7625fc251a3dc04ce5319edc56a9dc5fccf27564 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566029 Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#650514}
-
Roman Aleksandrov authored
Add empty alt to the extension's image because the name of the extension is presented. Add backButton alt to be consistent with other Settings pages. Cover all the issues by tests. Bug: 879146 Change-Id: I74d4c8683fac4b9051eb43706b260fe0e030a5c3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1554769 Commit-Queue: Roman Aleksandrov <raleksandrov@google.com> Reviewed-by:
Hector Carmona <hcarmona@chromium.org> Cr-Commit-Position: refs/heads/master@{#650513}
-
Eric Aleshire authored
This is part of EG1 to EG2 migration, which involves moving EarlGrey code from app-side helpers into test code. For GREYAsserts, the policy is to take assert- containing-helpers, modify them to return NSError* with localizedDescription containing the assert failure (in the event of a failure), and then assert on the result of the helper on the test side. Bug: 922813 Change-Id: I9d881648b15a3e1bd69eed3ccfa20d7aee7d3dfc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1562756 Commit-Queue: ericale <ericale@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#650512}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/81fd86c1ca03..e62bf561638c git log 81fd86c1ca03..e62bf561638c --date=short --no-merges --format='%ad %ae %s' 2019-04-12 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). 2019-04-12 herb@google.com Convert the CPU mask case to use prepareForDrawing Created with: gclient setdep -r src/third_party/skia@e62bf561638c The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll 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=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;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=egdaniel@chromium.org Change-Id: I04f871f0c96b528474a8b1d4cca342c1d954b0cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566289Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650511}
-
Theresa authored
Suppress unused resource lint warning so that compilation without the Feed enable doesn't fail. BUG=951074 Change-Id: Iac74b2bd29cc54c976d7112101a5ab814a10898e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566286 Auto-Submit: Theresa <twellington@chromium.org> Reviewed-by:
Sky Malice <skym@chromium.org> Commit-Queue: Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#650510}
-
about://flagsCharlene Yan authored
Bug: 951078 Change-Id: Id66be9ff30e334f53338fa9848fa73db3ea318ff Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1560373 Commit-Queue: Charlene Yan <cyan@chromium.org> Reviewed-by:
Taylor Bergquist <tbergquist@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#650509}
-
Erik Luo authored
- Prompt's '>' icon is dimmed when pressing 'Enter' would not evaluate (instead insert newline) - Icon moves from ConsoleView to ConsolePrompt - Drive-by: removes obsolete styles related to pins Screenshot: https://imgur.com/a/GNrOadJ Bug: none Change-Id: Ia22c905154b78495138a0eaf954a2bc88de9a9c3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1548578Reviewed-by:
Joel Einbinder <einbinder@chromium.org> Commit-Queue: Erik Luo <luoe@chromium.org> Cr-Commit-Position: refs/heads/master@{#650508}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/644a8b5800a7..7017b6e58088 git log 644a8b5800a7..7017b6e58088 --date=short --no-merges --format='%ad %ae %s' 2019-04-12 ravisadineni@chromium.org Adjust tester for power user belonging to debugfs-access group. Created with: gclient setdep -r src/third_party/chromite@7017b6e58088 The AutoRoll server is located here: https://autoroll.skia.org/r/chromite-chromium-autoroll 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=luci.chromium.try:chromeos-kevin-rel TBR=chrome-os-gardeners@chromium.org Change-Id: I97e35ec2c65082eecfcc6cbde3dcccbbb66721ca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565776Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650507}
-
Jonathan Metzman authored
Only build seed corpora where it is necessary, in order to reduce build sizes. Bug: 952412 Change-Id: I6e529226d4ba51fd547c1869525a9f094fdcd998 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566454Reviewed-by:
Max Moroz <mmoroz@chromium.org> Reviewed-by:
Ben Pastene <bpastene@chromium.org> Commit-Queue: Jonathan Metzman <metzman@chromium.org> Cr-Commit-Position: refs/heads/master@{#650506}
-
Ian Kilpatrick authored
This adds a pre-OOF-layout cache check. Essentially if we know the size of the OOF container hasn't changed size, and the OOF descendant isn't dirty, we can safely re-use the layout result. If we hit this cache check we don't need to perform the work required to size and position the OOF object again. This comes with one hiccup. We need a way to properly determine what the old offset was without resorting to running the full logic within LayoutDescendant. This adds a mutable field on the NGLayoutResult to perform this. An alternate I considered was making the NGOutOfFlowLayoutPart know about the previous layout result, and children within them. But to perform this efficiently we would need to keep a pointer to the current child so that we wouldn't scan all the children. Bug: 635619 Change-Id: I4dd4fb526b273b982e4e94a2a280f388c16719cb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1553646Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/master@{#650505}
-
Sammie Quon authored
These were part of [1], but made the diff difficult to read so moved them to a separate cl. Also renamed StartAnimationObserver to EnterAnimationObserver as it makes more sense in the context. [1] https://chromium-review.googlesource.com/c/chromium/src/+/1564881 Test: added tests Bug: 914147 Change-Id: Iaf878bf2255d3c5ac585d52fc32cdf9f15cf8029 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566361 Commit-Queue: Sammie Quon <sammiequon@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#650504}
-
Khushal Sagar authored
The fact that we initialize EGL bindings in tests but don't clear them on teardown was making tests unhappy. R=piman@chromium.org BUG: 899985 Change-Id: Id5e103974379f1fca18d9ec67768f9fc72f65061 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566280 Commit-Queue: Khushal <khushalsagar@chromium.org> Auto-Submit: Khushal <khushalsagar@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Cr-Commit-Position: refs/heads/master@{#650503}
-
Junbo Ke authored
Bug: b/120908346 Test: Manual test on device Change-Id: Iaf3b38a615f8679a87fd5982fff1fe6e4fa7e8cd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565618Reviewed-by:
Luke Halliwell <halliwell@chromium.org> Commit-Queue: Junbo Ke <juke@chromium.org> Cr-Commit-Position: refs/heads/master@{#650502}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 375cda34. With Chromium commits locally applied on WPT: 0a8f3ffa "Use testdriver Action API in WPT pointerevent touch tests - Part 2" adc34f41 "Fix web_test pointerevent_coordinates_when_locked on wpt" e525003f "Do not resume a suspended BaseAudioContext when AudioWorklet starts" 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: dcheng@chromium.org, palmer@chromium.org: external/wpt/domparsing NOAUTOREVERT=true TBR=robertma No-Export: true Change-Id: If03c7481381b4f8461d5b9e1cbdbaac20da8b84d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566360Reviewed-by:
WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650501}
-
Jonathan Metzman authored
archive_seed_corpus is false by default. If it is true then seed corpora won't get built. This will be used to reduce build sizes on most fuzzer build bots since they don't all need seed corpora. Bug: 952412 Change-Id: I67b925756763e6221e88a3d47961f20c5a831054 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566418 Commit-Queue: Jonathan Metzman <metzman@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Cr-Commit-Position: refs/heads/master@{#650500}
-