- 11 Nov, 2020 40 commits
-
-
Moe Ahmadi authored
Deletion from the in-memory URL DB can be slow: http://shortn/_eSkRG8RvpV This CL makes the deletion of queries from the in-memory URL DB async by posting the deletion task to a sequenced task runner on the UI thread. Fixed: 1110077 Change-Id: Ia8099093eea6efde952bfbb58cd182b06174f8e7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2531654Reviewed-by:
Ramya Nagarajan <ramyan@chromium.org> Commit-Queue: Moe Ahmadi <mahmadi@chromium.org> Cr-Commit-Position: refs/heads/master@{#826399}
-
Chan Li authored
android test runner has integrated with resultsink directly, so we should update those test suites to stop using default result_adapter. Bug: 1104245 Change-Id: I581afa657d972d7a30aca7c70a9b939b436b54d2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2530524Reviewed-by:
Dirk Pranke <dpranke@google.com> Reviewed-by:
Nodir Turakulov <nodir@chromium.org> Commit-Queue: Chan Li <chanli@chromium.org> Cr-Commit-Position: refs/heads/master@{#826398}
-
Michael Lippautz authored
Currently WTF uses forward declarations to define basic GC traits that are used throughout WTF and Blink globally, i.e., without any specific context or other traits being available. This is an implicit dependency on blink. With Oilpan throuhg V8, we make this dependency a header-only dependency that is explicit which allows to re-use existing traits from the library to define the WTF equivalents. Change-Id: I3995c0d587424299ed880adcd5ac848a635e4f1e Bug: chromium:1056170 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532236 Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#826397}
-
Evan Stade authored
This matches the current logic of the internal TabImpl#isVisible method (inverted), which is true when a tab is active and in a started fragment. The name reflects the reason for exposing this method, i.e. why we think it's notable to clients. Test coverage will be added in a follow up. Bug: 1146058 Change-Id: Ibb538fa349623ca214774ef53496fab2414a6c78 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2525848 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#826396}
-
James Robinson authored
Some tests in the AgentImplTest suite were accidentally sending FIDL messages over unbound channels. This was not caught by the test because the tests did not spin the run loop to let the asynchronous callbacks run or not run. This error is caught by new instrumentation being added to the FIDL bindings. This fixes up the bindings mismatch, spins the run loop to perform the asynchronous portions of the test, and also adds some cleanup logic that is also necessary now that the asynchronous portion of the test is executing. Test: cr_fuchsia_base_unittests Bug: fuchsia:63593 Change-Id: I251124d9099695fc56096fd7baeb7a8fb67fdf7d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2530268 Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Auto-Submit: James Robinson <jamesr@chromium.org> Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Cr-Commit-Position: refs/heads/master@{#826395}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/0d4297e6b205..dfff133590c2 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-trace-processor-linux-chromium Please CC perfetto-bugs@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md Tbr: perfetto-bugs@google.com Change-Id: I3133bd26e0edf4e9e914b082dd32b8bba52719d8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533156Reviewed-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@{#826394}
-
Daniel Cheng authored
Miscellaneous fixes: - Simplify the unit tests by unparameterizing them. Instead, the tests simply iterate over an array of test cases, using SCOPED_TRACE() to make it easier to debug failures. - Convert metrics enums to be a scoped enumeration, which allows: - clang to enforce kMaxValue correctness - autodeduction of the max value by UMA_HISTOGRAM_ENUMERATION() - Remove the unused Gamma enum. The metric itself was removed in https://crrev.com/c/1684563. Bug: 742517, 1047547 Change-Id: I0a5b4aeaa8540505a7b0596a4d0df6f871fef8b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2527341Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#826393}
-
Chan Li authored
typ has integrated with resultsink directly, so we should update those test suites to stop using default result_adapter. Bug: 1104252 Change-Id: I7210d3abf2e2b259b61e148c59c69f85f1482fe5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2531513Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Chan Li <chanli@chromium.org> Cr-Commit-Position: refs/heads/master@{#826392}
-
yiyix authored
After allocate a large buffer in memory and creating canvas, it will trigger the garbage collection from v8, which will trigger offscreenCanvas::Dispose to be called. This call will cause the offscreencanvas detached from the |host|. However the |host| is saved as a valid callback in the observer list of the canvas resource provider. Calling this |host| without offscreencanvas causes this access to poison address. In my fix, after garbage collection is triggered and dispose is called, DiscardResourceProvider() is called as well, so it removes itself from the observer list. Bug: 1143662 Change-Id: I82c9a1f70c117b03de9fb64f4849c1f3c4311d1a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2531136Reviewed-by:
Juanmi Huertas <juanmihd@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Yi Xu <yiyix@chromium.org> Cr-Commit-Position: refs/heads/master@{#826391}
-
Chan Li authored
This reverts commit 6f8b5118. Reason for revert: caused compile failure on multiple builders. Sample build: https://ci.chromium.org/p/chromium/builders/ci/Cast%20Audio%20Linux/90601? Original change's description: > Remove empty base/bind_helpers.h > > The contents moved to callback_helpers.h. > > Also renames a few new bind_helpers.h includes that have been added > in the meantime. > > R=dcheng@chromium.org > TBR= > > Change-Id: Ia511a4939d60bd2ef5b474185e3716017543f8af > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2523545 > Commit-Queue: danakj <danakj@chromium.org> > Reviewed-by: Daniel Cheng <dcheng@chromium.org> > Cr-Commit-Position: refs/heads/master@{#826387} TBR=danakj@chromium.org,dcheng@chromium.org Change-Id: I7405532513d9195295aab659f565c8d00cdb3016 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533278Reviewed-by:
Chan Li <chanli@chromium.org> Commit-Queue: Chan Li <chanli@chromium.org> Cr-Commit-Position: refs/heads/master@{#826390}
-
Dave Tapuska authored
crrev.com/6f8b5118 adjusted location of callback helpers. TBR=danakj@chromium.org NOTRY=true Change-Id: I4af7bd6b70c4716db7059b16ec7dd7843fc0fd21 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533026Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Auto-Submit: Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/master@{#826389}
-
David Tseng authored
Adds back call mistakenly removed in https://chromium-review.googlesource.com/c/chromium/src/+/2496287 R=dmazzoni@chromium.org Change-Id: I3fab6b94a8c9c80527b0b2d451ef1d6911be1f10 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532928Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#826388}
-
danakj authored
The contents moved to callback_helpers.h. Also renames a few new bind_helpers.h includes that have been added in the meantime. R=dcheng@chromium.org TBR= Change-Id: Ia511a4939d60bd2ef5b474185e3716017543f8af Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2523545 Commit-Queue: danakj <danakj@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#826387}
-
chinsenj authored
This CL adds metrics for counting the number of times a user adjusts a capture region. Visit go/capture-mode-metrics to see other planned metrics. Test: manual + added Bug: 1140182 Change-Id: Ib058be572eff6c539e8673cd9a25d340e053b521 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2523492Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Weilun Shi <sweilun@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Sammie Quon <sammiequon@chromium.org> Commit-Queue: Jeremy Chinsen <chinsenj@chromium.org> Cr-Commit-Position: refs/heads/master@{#826386}
-
Jesse Schettler authored
Sort the scanners in the scanner dropdown alphabetically and set the first scanner as the default scanner. Bug: 1059779 Change-Id: I5a40ea0fadeb5c6166450a537c81dfe8fecdd240 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2528941Reviewed-by:
Zentaro Kavanagh <zentaro@chromium.org> Commit-Queue: Jesse Schettler <jschettler@chromium.org> Cr-Commit-Position: refs/heads/master@{#826385}
-
Maggie Chen authored
Change-Id: Ibc08b6a720494c7234104a8089b6ad9c580e774f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2528298Reviewed-by:
Sunny Sachanandani <sunnyps@chromium.org> Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Reviewed-by:
Robert Kroeger <rjkroege@chromium.org> Reviewed-by:
weiliangc <weiliangc@chromium.org> Commit-Queue: Maggie Chen <magchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#826384}
-
Ted Meyer authored
Change-Id: I63536d743f3396f422fb9959eada4e0fec733a42 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2528633 Auto-Submit: Ted Meyer <tmathmeyer@chromium.org> Reviewed-by:
Frank Liberato <liberato@chromium.org> Reviewed-by:
Caitlin Fischer <caitlinfischer@google.com> Commit-Queue: Caitlin Fischer <caitlinfischer@google.com> Cr-Commit-Position: refs/heads/master@{#826383}
-
Alexander Dunaev authored
Some unit tests should be removed or re-worked when non-Ozone X11 is deprecated. Here the TODOs are changed so they refer to the relevant issue. Bug: 1109112 Change-Id: I221c8447b62bb4aa4a7e38acb53cca84ff6427d8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2526300Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Auto-Submit: Alexander Dunaev <adunaev@igalia.com> Cr-Commit-Position: refs/heads/master@{#826382}
-
Dave Tapuska authored
Looking at crash reports where the LocalRootImpl is null it is clear that the HandleMouseUp can detach the frame and the GetPage accessor will then be null. Change-Id: If856e914135b833bfacbce84be5c15b242acd09f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533021 Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#826381}
-
Xing Liu authored
Disable IncognitoBackgroundSyncBrowserTest.OffTheRecordProfile. This is failing on Android bots. TBR=nator@chromium.org Bug: 1147754 Change-Id: Ib192173097ab3afe4371431d3a9b2c5d6440a57d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532856Reviewed-by:
Xing Liu <xingliu@chromium.org> Commit-Queue: Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#826380}
-
Clemens Arbesser authored
This adds an integration test, testing changing element conditions. This CL also fixes several bugs that were discovered during testing: - Fixed issue where ElementConditions were not correctly added and cleared. - Constructing a new instance of AssistantHeaderCoordinator no longer has a side effect in AssistantHeaderModel. - Fixed a possible crash when showing a new trigger script while another was in the process of being hidden (crash comes down to timing). The fix is to always create a new BottomSheetContent, instead of re-populating the old one. Bug: b/171776026 Change-Id: I7eac6673100ab21d459ec7f1ed200b2be9a44ff5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2524532 Commit-Queue: Clemens Arbesser <arbesser@google.com> Reviewed-by:
Marian Fechete <marianfe@google.com> Cr-Commit-Position: refs/heads/master@{#826379}
-
Sigurdur Asgeirsson authored
ScopedObserver is being deprecated in favor of two new classes: - base::ScopedObservation for observers that only ever observe a single source. - base::ScopedMultiSourceObservation for observers that do or may observe more than a single source. This CL was uploaded by git cl split. R=vasilii@chromium.org Bug: 1145565 Change-Id: I12660e862e5b73ed06f39d1ca4eb40a8067a4760 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533022 Auto-Submit: Sigurður Ásgeirsson <siggi@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Commit-Queue: Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#826378}
-
Azeem Arshad authored
This CL is a followup to https://crrev.com/c/2482443. This adds simple unittest that verifies that device scroll list in bluetooth tray view is updated correctly. Fixed: 1141995 Change-Id: I8237871ff6c06f864a804d106a0556d3552b6109 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2508234Reviewed-by:
James Cook <jamescook@chromium.org> Commit-Queue: Azeem Arshad <azeemarshad@chromium.org> Cr-Commit-Position: refs/heads/master@{#826377}
-
sczs authored
Bug: 1145379 Change-Id: I5284a9c080e5b3d951eff65ca8ef4426b3377cd6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532918 Commit-Queue: Sergio Collazos <sczs@chromium.org> Reviewed-by:
Ganggui Tang <gogerald@chromium.org> Cr-Commit-Position: refs/heads/master@{#826376}
-
Tomasz Wiszkowski authored
This change enables by default the feature where the long search suggestion text would be wrapped to the second line. Bug: 1085184 Change-Id: Id1e8848457250e8bf35cca2a7b8bf6723374661c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2504071Reviewed-by:
Caitlin Fischer <caitlinfischer@google.com> Reviewed-by:
Filip Gorski <fgorski@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Tomasz Wiszkowski <ender@google.com> Cr-Commit-Position: refs/heads/master@{#826375}
-
Prameet Shah authored
The ArcSharesheetBridge will receive share requests from Android and handle them with Chrome's sharesheet in a Chrome Custom Tab. This change sets up the skeleton to accept connections from Android. BUG=b:172963488 TEST=Deployed chrome, and verified share intents is received from Android using Android's APIDemos apk. Change-Id: Ib14e414f65c3bb7b675a0d1a0d846fc3a17b0769 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2531394 Auto-Submit: Prameet Shah <phshah@chromium.org> Commit-Queue: Josh Horwich <jhorwich@chromium.org> Reviewed-by:
Josh Horwich <jhorwich@chromium.org> Reviewed-by:
Sam McNally <sammc@chromium.org> Reviewed-by:
Maggie Cai <mxcai@chromium.org> Cr-Commit-Position: refs/heads/master@{#826374}
-
Muhammad Hasan Khan authored
ARC provisioning can fail due to ARC instance abruptly stopping. This can have three possible reasons however we show the same generic error "Something went wrong" instead of a more useful error. With this change, we're adding the ability to show a unique error for each of the three reasons for ARC instance stopping. BUG=b:166322619 TEST=force the arc stop error, deploy to dut, ensure new metric is logged in chrome://histograms Change-Id: I5d73fcf9f845237e6d4d52e52a24a6cfe7f34e74 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2518664Reviewed-by:
Yury Khmel <khmel@chromium.org> Reviewed-by:
Hidehiko Abe <hidehiko@chromium.org> Reviewed-by:
Jorge Lucangeli Obes <jorgelo@chromium.org> Reviewed-by:
Yusuke Sato <yusukes@chromium.org> Reviewed-by:
Jesse Doherty <jwd@chromium.org> Commit-Queue: Muhammad Hasan Khan <mhasank@chromium.org> Cr-Commit-Position: refs/heads/master@{#826373}
-
Joon Ahn authored
All non-primitive types need explicit non/null modifier as per style guide. chrome/test/data/webui/chromeos/diagnostics:closure_compile Bug: 1125150 Test: autoninja Change-Id: Ic1a6ff8c08cb1fb8770158c3154eb0bec8879712 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2530191 Auto-Submit: Joon Ahn <joonbug@chromium.org> Reviewed-by:
Zentaro Kavanagh <zentaro@chromium.org> Commit-Queue: Joon Ahn <joonbug@chromium.org> Cr-Commit-Position: refs/heads/master@{#826372}
-
Sigurdur Asgeirsson authored
ScopedObserver is being deprecated in favor of two new classes: - base::ScopedObservation for observers that only ever observe a single source. - base::ScopedMultiSourceObservation for observers that do or may observe more than a single source. This CL was uploaded by git cl split. R=harringtond@chromium.org Bug: 1145565 Change-Id: I00ea07dd484293ba9cc164f97838def2a4e15615 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532657 Auto-Submit: Sigurður Ásgeirsson <siggi@chromium.org> Reviewed-by:
Dan H <harringtond@chromium.org> Commit-Queue: Dan H <harringtond@chromium.org> Cr-Commit-Position: refs/heads/master@{#826371}
-
Cathy Li authored
Change-Id: Iece225a990448b954161d3286a1f595f60e6f04e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2530262Reviewed-by:
Peter Williamson <petewil@chromium.org> Commit-Queue: Cathy Li <chili@chromium.org> Cr-Commit-Position: refs/heads/master@{#826370}
-
Sigurdur Asgeirsson authored
ScopedObserver is being deprecated in favor of two new classes: - base::ScopedObservation for observers that only ever observe a single source. - base::ScopedMultiSourceObservation for observers that do or may observe more than a single source. This CL was uploaded by git cl split. R=msramek@chromium.org Bug: 1145565 Change-Id: I10357ac1f5c2ae101b2a63a7e0841f890cf3134a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532717 Auto-Submit: Sigurður Ásgeirsson <siggi@chromium.org> Reviewed-by:
Martin Šrámek <msramek@chromium.org> Commit-Queue: Martin Šrámek <msramek@chromium.org> Cr-Commit-Position: refs/heads/master@{#826369}
-
Zentaro Kavanagh authored
- Current full battery capacity was moved to a different struct Bug: 1125150 Test: browser_tests --gtest_filter=DiagnosticsApp* Change-Id: I64e6c3ff810a38e53c4ea1bf95e58f56469d81de Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2531114 Commit-Queue: Zentaro Kavanagh <zentaro@chromium.org> Reviewed-by:
Bailey Berro <baileyberro@chromium.org> Cr-Commit-Position: refs/heads/master@{#826368}
-
Dave Tapuska authored
The ActiveURL is now set via messages sent on the LocalFrame. Hopefully this will help improve crash reports. This use to occur in RenderFrameImpl::OnMessageReceived. BUG=993189 Change-Id: I184ef2892b550fb79ced43c2c48315f68dd6c358 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2521078Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/master@{#826367}
-
Nico Weber authored
Bug: 1147858,1116601,1142017 Change-Id: I1611af0945f340f704055bedb3e1bffd5765c8f7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533015 Commit-Queue: Nico Weber <thakis@chromium.org> Reviewed-by:
Mark Mentovai <mark@chromium.org> Cr-Commit-Position: refs/heads/master@{#826366}
-
Devlin Cronin authored
ScriptExecutor is used to drive programmatic script execution by extensions into different web frames. While it is reasonably tested transitively through end-to-end tests for the tabs.executeScript() method and friends, we should have more targetted testing for its functionality as well. Add a browser test with a simple test case of injecting script into the main world and returning the result as a starting point. Bug: None Change-Id: I9a00a6b1141935d35cf1c0317c0ccda734c991e4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2528912 Auto-Submit: Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
David Bertoni <dbertoni@chromium.org> Commit-Queue: Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#826365}
-
Dave Tapuska authored
Move the duplicate implementation of these methods into the base class. BUG=1097816 Change-Id: Ibc97bc14dbc246cbc7bdced0a53bb43afa96cfbf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2526912 Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#826364}
-
Luke Zielinski authored
TBR=robertma@chromium.org Change-Id: I8c48c7408c5f91077bb07c7e73897fbdd1c9313f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533016Reviewed-by:
Luke Z <lpz@chromium.org> Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Luke Z <lpz@chromium.org> Cr-Commit-Position: refs/heads/master@{#826363}
-
Ossama Mahmoud authored
Bug: 1130482 Change-Id: I1ea101821632f331e37e2ea0eecc04716a93b41f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532261Reviewed-by:
Roman Sorokin [CET] <rsorokin@chromium.org> Commit-Queue: Roman Sorokin [CET] <rsorokin@chromium.org> Cr-Commit-Position: refs/heads/master@{#826362}
-
Liquan (Max) Gu authored
Change-Id: I18846c0f5e331678b7f0c9bd21a142e22c30c991 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2520021 Commit-Queue: Liquan (Max) Gu <maxlg@chromium.org> Reviewed-by:
Rouslan Solomakhin <rouslan@chromium.org> Cr-Commit-Position: refs/heads/master@{#826361}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/994d3835f535..ac95abdb4b12 2020-11-11 gab@chromium.org [telemetry] Add "base" as a key low-overhead tracing category If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/catapult-autoroll Please CC oysteine@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:chromeos-kevin-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: None Tbr: oysteine@google.com Change-Id: I4a4de4e1131d384d8adfaf93e3123699b4d4b317 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533094Reviewed-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@{#826360}
-