- 19 May, 2020 40 commits
-
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/e1837289..b072390c Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,vahl@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: Ib84fec7ecbb7ac81dfb2f8980e37ee63dd028b91 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208642Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#770245}
-
Abhijeet Singh authored
This CL does not change behavior. Feature flags in Assistant which are already completely launched are removed. Bug: b:156676369 Test: Does not change behavior. Change-Id: Ie1ee273f3eefe38c688e3bbeac5e01601a8501f8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207860Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Reviewed-by:
David Black <dmblack@google.com> Commit-Queue: Abhijeet Singh <siabhijeet@google.com> Cr-Commit-Position: refs/heads/master@{#770244}
-
danakj authored
We rename roundTripToBrowserThen() to roundTripToBrowser() and make it return a promise instead of receiving a callback. The promise resolves when the callback would have previously been run. R=nasko@chromium.org Bug: 866140 Change-Id: I3007ea8d7e62d64ea03d61fe57c67680cbf046ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2204633Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#770243}
-
Victor Fei authored
The previous behavior of BrowserA11y::GetColHeaderNodeIds returned only the first column header of the table, due to it calling AXNode::GetTableCellColHeaderNodeIds. This is because that function is only intended to be used on a table cell node, and when we use it on a table node, it would only return the first column header of the table rather than all the column headers. This CL introduced a new function AXNode::GetTableColHeaderNodeIds, which returns ALL column headers of the table. The motivation behind this change is that we are not retrieving all the column headers in UIA::ITableProvider::GetColumnHeaders. This CL fixes issue. AX_Relnotes: Windows Narrator now reads the corresponding column header of a cell on focus. Previously, the column header of that cell was not read. Bug:847971 Change-Id: Ie539f42328c50310d9eb4be0d6bf7e5ba24cbbbd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2197663 Commit-Queue: Victor Fei <vicfei@microsoft.com> Reviewed-by:
Nektarios Paisios <nektar@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#770242}
-
yilkal authored
This cl removes the welcome screen of EDU coexistence flow. This means that the first page that a supervised user sees in the flow allows the user to select which parent to use to add the EDU account. The strings in this current first screen have been updated. A screenshot can be found here: https://drive.google.com/file/d/164-O5p1tixfWCxzU0T7yWoZQcPzCksyb/view?usp=sharing Bug: 1082336 Change-Id: Ife1f09a29babd8185199f28bf9856af97df15405 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2204816 Commit-Queue: Yilkal Abe <yilkal@chromium.org> Reviewed-by:
Anastasiia N <anastasiian@chromium.org> Reviewed-by:
Aga Wronska <agawronska@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#770241}
-
Chong Gu authored
Enable context_lost, depth_capture and gpu_process. Will add ~10 minutes of bot time and runtime per build. Bug: 1058255 Change-Id: I4aed6b2b468deea9ba5c61dfea3c5044005bd08a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208368Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Chong Gu <chonggu@google.com> Cr-Commit-Position: refs/heads/master@{#770240}
-
Reilly Grant authored
This annotation avoids a potential priority inversion as the dynamic loader lock is held by a background thread. Bug: 1082862 Change-Id: Ie7336d8a6b76a6d2339deb66a98a3ac895c78a6a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2202386 Commit-Queue: Reilly Grant <reillyg@chromium.org> Reviewed-by:
Joe Mason <joenotcharles@chromium.org> Auto-Submit: Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#770239}
-
Mike Wittman authored
Instantiates the native unwinder provided by the stack_unwinder dynamic feature module, and passes it to the StackSamplingProfiler on Android. This is required for StackSamplingProfiler to unwind native and Java stack frames on Android. This implementation shares the same MemoryRegionMap over all native unwinders. If we need to use separate MemoryRegionMaps between unwinders (e.g. to account for new modules loaded) this should be possible with local changes to create_native_unwinder_factory(). The unwinder factory, and implicitly the Module and MemoryRegionMap, is leaked since it needs to have full process lifetime anyway and that alternative of having callers manage a shared resource for it would be cumbersome. Bug: 1004855 Change-Id: I3d8c2981a720f564deb8774f39ec3e7adb60619e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2202416 Commit-Queue: Mike Wittman <wittman@chromium.org> Reviewed-by:
Etienne Pierre-Doray <etiennep@chromium.org> Cr-Commit-Position: refs/heads/master@{#770238}
-
Ken Rockot authored
This change ensures that all enum definitions have their complete set of valid integral values known at parse time. This required some refactoring to avoid situations where enum values couldn't be resolved until *compile* time by the target language compiler processing the generated output. Knowing an enum's integral values at parse time simplifies target language generation for current and future parsers, and it also unblocks ongoing work to automate validation of backwards-compatible mojom changes. Some unit tests are added for enum parsing, as well as constant parsing since some of that logic is closely related and was touched by this CL. Incidentally this also fixes bug 1011660 by resolving constant definitions to a literal expression at parse time, rather than propagating references to generated code. Fixed: 1011660, 1083007 Change-Id: I71b44ab89d768d9ad0d245e85a252fe8a51bfefb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2204846 Commit-Queue: Ken Rockot <rockot@google.com> Reviewed-by:
Oksana Zhuravlova <oksamyt@chromium.org> Cr-Commit-Position: refs/heads/master@{#770237}
-
Robert Liao authored
The widget maintains the lifetime of the view. BUG=1044687 Change-Id: I38471a6fa14bae51215c94729a0e51058401d9f9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207776 Commit-Queue: Sean Topping <seantopping@chromium.org> Auto-Submit: Robert Liao <robliao@chromium.org> Reviewed-by:
Sean Topping <seantopping@chromium.org> Cr-Commit-Position: refs/heads/master@{#770236}
-
Yann Dago authored
Bug: 1084606 Change-Id: Id5cec570ecedc5ef8ee1aa9cdeed29e811779cdd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207746 Auto-Submit: Yann Dago <ydago@chromium.org> Commit-Queue: Esmael Elmoslimany <aee@chromium.org> Reviewed-by:
Esmael Elmoslimany <aee@chromium.org> Cr-Commit-Position: refs/heads/master@{#770235}
-
Tom Anderson authored
BUG=1066670 R=msisov CC=sky Change-Id: I9c290c14a9b1ae4f04d2db1c73cc1e85574bb137 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207779 Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Maksim Sisov <msisov@igalia.com> Cr-Commit-Position: refs/heads/master@{#770234}
-
Justin DeWitt authored
Aggressive retry in the background can cause a dramatic increase in traffic when the server is overloaded. We can wait until the next scheduling interval after a single retry. Bug: 1084319 Change-Id: Iccb361216004476fc73a71c393d4d64ac815d48f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208172 Auto-Submit: Justin DeWitt <dewittj@chromium.org> Commit-Queue: Jian Li <jianli@chromium.org> Reviewed-by:
Jian Li <jianli@chromium.org> Cr-Commit-Position: refs/heads/master@{#770233}
-
Stephen Roe authored
Reports qemu-img exit code and command output. The exit code allows locating these intermittent errors via BigQuery. Logging the command output will give more information on the failure. See http://crbug.com/1063106#c7 Bug: 1063106 Change-Id: I60d7240eb4183e70ae25aa8efb514ba05ac356df Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208109 Commit-Queue: Stephen Roe <steveroe@google.com> Reviewed-by:
Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#770232}
-
mark a. foltz authored
This reverts commit 34fae769. Reason for revert: Seems to have broken tab mirroring. Original change's description: > [Media Router] Consolidate origin checks for using Cast streaming apps. > > Previously, the origin check was only done for sink availability and not > at route creation. It also did some brittle string parsing of the > media source ID. > > The updated check covers all streaming app IDs, adds the meet.google.com > origin, and checks origins for both availability and route creation. > > Follow up changes will add additional checks to prevent opaque origins > from also launching streaming apps (see bug for details). > > Bug: 1047834,1081503 > Change-Id: I081822796524ec2c72af29c544382cb4c9d9542d > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2095928 > Commit-Queue: mark a. foltz <mfoltz@chromium.org> > Reviewed-by: Takumi Fujimoto <takumif@chromium.org> > Cr-Commit-Position: refs/heads/master@{#769512} TBR=mfoltz@chromium.org,takumif@chromium.org,jophba@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 1047834, 1081503, 1084643 Change-Id: I328fe04b0d0541a86649e84f06a44a30e128051b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207748 Commit-Queue: mark a. foltz <mfoltz@chromium.org> Reviewed-by:
mark a. foltz <mfoltz@chromium.org> Reviewed-by:
Takumi Fujimoto <takumif@chromium.org> Cr-Commit-Position: refs/heads/master@{#770231}
-
danielng authored
Updating strings to be the ones that have gone through review. Bug: 1016193 Screenshots: https://drive.google.com/drive/folders/11-3tM0nDWJr0ttYWjt6_irsuSEDkSOJ9?usp=sharing Change-Id: I4202b4fbbabadb82f00f929c3c6a835da9a61761 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208315 Auto-Submit: Daniel Ng <danielng@google.com> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#770230}
-
George Burgess IV authored
Per discussion on cxx@chromium.org, these nits sound like a good deal to land. Bug: 1016926 Change-Id: Iec646df3a6644b6fa4cb76a734d4f620cb92e78b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207377 Commit-Queue: George Burgess <gbiv@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#770229}
-
Alex Gough authored
Prelude to removal of WithSandboxType API. See linked bug for rationale. Does not change behavior. Tests: browser_tests ChromeMojoProxyResolverFactoryBrowserTest.* Bug: 1065087 Change-Id: I0ad3e1cf9f5da9efc41d9d63a839f8dd15a9d443 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2202680 Commit-Queue: Alex Gough <ajgo@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Cr-Commit-Position: refs/heads/master@{#770228}
-
Henrique Nakashima authored
Register them in ChromePreferenceKeys and use SharedPreferencesManager consistently instead of SharedPreferences directly. Bug: 1022108 Change-Id: I6e85ace81c366b01763a2c816a7525d5cb50cc31 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1994912Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Cr-Commit-Position: refs/heads/master@{#770227}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/55b3dc0c14c8..1b63b4ac6933 2020-05-19 robertphillips@google.com Revert "SkSL function inlining" 2020-05-19 bsalomon@google.com Avoid MIP mapping in strict_constraint_no_red_allowed 2020-05-19 brianosman@google.com Remove legacy matrix concat code 2020-05-19 ethannicholas@google.com SkSL function inlining If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-autoroll Please CC lovisolo@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: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 Bug: None Tbr: lovisolo@google.com Change-Id: Id432c16499cc95a250d888ccbc0636e332363fd9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2209129Reviewed-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@{#770226}
-
chromium-autoroll authored
https://dawn.googlesource.com/dawn.git/+log/9b54466be408..8d6b021a2a13 2020-05-19 yunchao.he@intel.com Fix a bug for texture subresource If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/dawn-chromium-autoroll Please CC cwallez@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:dawn-linux-x64-deps-rel;luci.chromium.try:dawn-mac-x64-deps-rel;luci.chromium.try:dawn-win10-x64-deps-rel;luci.chromium.try:dawn-win10-x86-deps-rel Bug: None Tbr: cwallez@google.com Change-Id: I21229fa1ad61bff3d090dac7f8067b2c56b98e5b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2209274Reviewed-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@{#770225}
-
David Lechner authored
This replaces DeprecatedWriteRemoteCharacteristic with WriteRemoteCharacteristic in device/fido. The replacement method has a parameter to specify writing with or without response, so this also allows us to remove the use of the separate WriteWithoutResponse method. Change-Id: I567d50c779c9f31ba44e557f2db9fc929273140a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2191233 Commit-Queue: David Lechner <david@pybricks.com> Reviewed-by:
Vincent Scheib <scheib@chromium.org> Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Cr-Commit-Position: refs/heads/master@{#770224}
-
Antonio Gomes authored
... in favor of its frame token-based RenderFrameHostManager::GetOpenerFrameToken(). There is still only valid callee of RenderFrameHostManager::GetOpenerRoutingID() which currently prevents its complete removal: RenderFrameProxyHost::InitRenderFrameProxy(). BUG=1051144 R=avi@chromium.org, dtapuska@chromium.org Change-Id: I6c02b09542298d6069c00fcf01672c4aa526251b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207972 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/master@{#770223}
-
danakj authored
The test wants to updatePosition() after its not visible but it was doing it before waiting for the visibility change to occur. Then it wants to verify that it's not received but it was being received flakily and racing with the next visibility change. So we use roundTripToBrowserThen() to wait for the updatePosition() to take effect if it would do so incorrectly. R=nasko@chromium.org Bug: 866140, 1069111, 1083452, 1083585 Change-Id: I0a51f0919b579456154b408e1455cd41d5416c95 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2204646Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#770222}
-
Kyle Horimoto authored
This CL adds support for dynamically-generated settings URLs (e.g., networking URLs which include the network's GUID as a URL parameter). It also adds a few test doubles which are used in SearchHandlerTest. Fixed: 1080892 Change-Id: I05254ab559a98c7a19edd3ceb44bff3a5f329faa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208530Reviewed-by:
Regan Hsu <hsuregan@chromium.org> Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#770221}
-
David Lechner authored
This replaces the use of DeprecatedWriteRemoteCharacteristic with WriteRemoteCharacteristic. It is assumed that all devices use write without response since the new WriteRemoteCharacteristic method no longer looks at the GATT characteristic properties. Change-Id: Ib7b7180b5671dde2771c1bf6a084efcb02558a3e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2197153 Commit-Queue: David Lechner <david@pybricks.com> Reviewed-by:
Ryan Hansberry <hansberry@chromium.org> Cr-Commit-Position: refs/heads/master@{#770220}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/90ec1ccfec93..e0d8925a3c32 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC sebsg@google.com,clamy@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.chrome.try:linux-chromeos-chrome Bug: None Tbr: sebsg@google.com,clamy@google.com Change-Id: I831b6b8bdeed827b87e7940a2104a613c52036ca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208962Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Reviewed-by:
sebsg <sebsg@chromium.org> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#770219}
-
Rodney Ding authored
- Add ThirdPartyOriginTrials flag to runtime enabled features. - This feature will be used to gate access to validating script-injected token with its external script origin. - Test added to cover injecting tokens from insecure/secure context into insecure/context document. Bug: 1073926 Change-Id: I96e0e805de7ed76806c0c358aee93915fe9115af Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2201405Reviewed-by:
Jason Chase <chasej@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Rodney Ding <rodneyding@google.com> Cr-Commit-Position: refs/heads/master@{#770218}
-
Mike Wittman authored
https://chromium.googlesource.com/chromium/src/third_party/libunwindstack.git/+log/acf93761dc00..dfd3f3d84cfc $ git log acf93761d..dfd3f3d84 --date=short --no-merges --format='%ad %ae %s' 2020-05-15 wittman [Sampling profiler] Add include dir to public config Created with: roll-dep src/third_party/libunwindstack Bug: 1083530 Change-Id: I825c095891a353a3ad2159a0ac23ee2c294f96e3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208607 Auto-Submit: Mike Wittman <wittman@chromium.org> Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org> Reviewed-by:
Etienne Pierre-Doray <etiennep@chromium.org> Cr-Commit-Position: refs/heads/master@{#770217}
-
Ian Kilpatrick authored
Tests only - a previously untested combination of properties which was accidently "fixed" by turning on the FlexNG codepath. Bug: 1081872 Change-Id: I3279a75fd5b8a610919b289d7d1a28d2982d38aa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208359 Commit-Queue: David Grogan <dgrogan@chromium.org> Auto-Submit: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
David Grogan <dgrogan@chromium.org> Cr-Commit-Position: refs/heads/master@{#770216}
-
Rohit Agarwal authored
Through IntentURI we can create a CCT via PaymentHandlerActivity which opens the CCT halfway in front of the regular tab. This allows a malicious CCT to represent itself as the content of the background tab. This CL adds an extra check to ensure we fire PaymentHandlerActivity only if the intent was sent from Chrome and not via external navigation. This CL also adds a browser test. Bug: 1083972 Change-Id: I136774e23a641fd5feef9e47aaa87ba2d2f94b48 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2205933Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Reviewed-by:
Rohit Agarwal <roagarwal@chromium.org> Commit-Queue: Rohit Agarwal <roagarwal@chromium.org> Cr-Commit-Position: refs/heads/master@{#770215}
-
Oleh Lamzin authored
Clarify that local time zone is used for DevicePowerPeakShiftDayConfig policy. Bug: b:154476021 BYPASS_POLICY_COMPATIBILITY_CHECK=clarify timezone behavior Change-Id: I1a149feb4c44cf348d202fbf9ea489f04d3b4546 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2206799Reviewed-by:
Maksim Ivanov <emaxx@chromium.org> Commit-Queue: Oleh Lamzin <lamzin@google.com> Cr-Commit-Position: refs/heads/master@{#770214}
-
John Lee authored
Bug: 1000989 Change-Id: Id62a256095d33a4eb3cb60582fed8783ba86c350 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2204967Reviewed-by:
dpapad <dpapad@chromium.org> Commit-Queue: John Lee <johntlee@chromium.org> Cr-Commit-Position: refs/heads/master@{#770213}
-
John Lee authored
This removes a mixin and updates the color to be more inline with other places in WebUI by sharing an already existing CSS variable. The difference in color seems very minor. https://imgur.com/a/0Pn2qVG Bug: 973674 Change-Id: Id38c3584807937356f1ce406ed6c12ba0882a047 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2204852Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Commit-Queue: John Lee <johntlee@chromium.org> Cr-Commit-Position: refs/heads/master@{#770212}
-
Anne Lim authored
Removed the flag since it has been completely rolled out. Bug: 1078584 Change-Id: I0e056574aa0d949d8b3879c855dc8a876ccf342c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2191161Reviewed-by:
Jared Saul <jsaul@google.com> Reviewed-by:
David Trainor <dtrainor@chromium.org> Reviewed-by:
John Wu <jzw@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Reviewed-by:
sebsg <sebsg@chromium.org> Commit-Queue: Anne Lim <annelim@google.com> Cr-Commit-Position: refs/heads/master@{#770211}
-
Dylan Cutler authored
This refactor will allow us to instrument other APIs as well without defining new private methods. Bug: 973801 Change-Id: Id0a2200dfbd3df37bf31a34d1d9d08dbc67be571 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2207492 Commit-Queue: Dylan Cutler <dylancutler@google.com> Reviewed-by:
Nate Chapin <japhet@chromium.org> Reviewed-by:
Asanka Herath <asanka@chromium.org> Cr-Commit-Position: refs/heads/master@{#770210}
-
Fabrice de Gans-Riberi authored
* Add a Cast Streaming Receiver app served from a content directory in CastRunner. * Rename "isolated Contexts" to "child Contexts" in CastRunner. Child Contexts are used for both isolated Contexts and Cast Streaming Contexts. * Register the Cast Streaming MessagePort in ApiBindingsClient. Bug: 1042501 Change-Id: Ic70ac7cd5362aecabcb0254fd906f0d2907cc01f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2176426 Commit-Queue: Fabrice de Gans-Riberi <fdegans@chromium.org> Reviewed-by:
Wez <wez@chromium.org> Reviewed-by:
David Dorwin <ddorwin@chromium.org> Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Cr-Commit-Position: refs/heads/master@{#770209}
-
chromium-autoroll authored
https://chromium.googlesource.com/native_client/src/native_client.git/+log/f45e60c61cc1..7e802793566c 2020-05-14 dschuff@chromium.org Update revision for PNaCl If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/nacl-autoroll Please CC mseaborn@chromium.org 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 Bug: None Tbr: mseaborn@chromium.org Change-Id: If9c5361daa83d7841101df2a4f1e75c7e5f0a0e1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2209120Reviewed-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@{#770208}
-
Bo Liu authored
The method was added in P, not N. Bug: 1084615 Change-Id: Ia0772c68b8190f3b0bc775e60c4aabefb59afa48 Tbr: torne@chromium.org Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2208366Reviewed-by:
Bo <boliu@chromium.org> Reviewed-by:
Richard Coles <torne@chromium.org> Commit-Queue: Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#770207}
-
Lily Chen authored
This CL refactors ReportingDeliveryAgent to take NetworkIsolationKeys of reports and endpoints into account. It sorts the reports so that only reports with the same NIK and origin are batched in the same upload. Reports for the same (NIK, origin) but different groups can still be in the same upload if they share an endpoint URL. Also reports that get assigned to the same endpoint URL can be batched together, even if they are assigned to ReportingEndpoints configured for different origins. All the NIK fields are still empty except in tests. Bug: 993805 Change-Id: I953f0b1ff38fbe2625c539e6e00306621f1025d1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2138566 Commit-Queue: Lily Chen <chlily@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#770206}
-