- 17 Jan, 2020 40 commits
-
-
Natalie Chouinard authored
Only a couple methods in LocationSettings were related to Clank Settings screens, so move them alongside the code that uses them in Site Settings. Further simplifications to follow, before the remainder of LocationSettings is moved to a more appropriate package location. Bug: 1043229 Change-Id: If8329b0aa9cd069ff8c6947801ca0e2eccc6bc40 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008314Reviewed-by:
Sky Malice <skym@chromium.org> Commit-Queue: Natalie Chouinard <chouinard@chromium.org> Cr-Commit-Position: refs/heads/master@{#732992}
-
Chromium WPT Sync authored
Using wpt-import in Chromium e094969c. With Chromium commits locally applied on WPT: 62f8d5f0 "Enable Scroll To Text by default" 363313c0 "Sort the registrations returned by getRegistrations() by registration ID." 8a985066 "[Trusted Types] Implement require-trusted-types-for" 67d99f23 "Deflake WPT test: required_csp-header.html" 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: jsbell@chromium.org: external/wpt/IndexedDB NOAUTOREVERT=true TBR=robertma No-Export: true Change-Id: I13cf62a08ae6fb962eccc02f1571782b6caf76d6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008149Reviewed-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@{#732991}
-
Hesen Zhang authored
- Implemented the flow when user clicked notification and launch Chrome Activity from background. Bug: 1013685 Change-Id: Ib9e96da59358fcc9f4016cf8a5ebcfe3ec043dc4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1994240 Commit-Queue: Hesen Zhang <hesen@chromium.org> Auto-Submit: Hesen Zhang <hesen@chromium.org> Reviewed-by:
Xing Liu <xingliu@chromium.org> Reviewed-by:
David Trainor <dtrainor@chromium.org> Cr-Commit-Position: refs/heads/master@{#732990}
-
Adithya Srinivasan authored
Also simulates a click when clicking enter/space when a portal is focused (similar to buttons). Bug: 1043127 Change-Id: I0b1a35cd978c191a958dea0ed47bf737cac7292f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1995940 Commit-Queue: Adithya Srinivasan <adithyas@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#732989}
-
kylechar authored
If Display::DrawAndSwap() decides to draw but not swap SkiaOutputSurfaceImpl creates a task to draw the root RenderPass that is never used. This will either trigger a DCHECK or the task will be overwritten and destroyed next draw. This results in resources not being released on the correct thread and fences not being signalled. Add plumbing so that if Display::DrawAndSwap() skips the swap buffer call that SkiaOutputSurfaceImpl still draws the root RenderPass. Bug: 1043153 Change-Id: Ib33599331ff1524bbbcd0ad05574dc2e0175b7a9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008068Reviewed-by:
Vasiliy Telezhnikov <vasilyt@chromium.org> Commit-Queue: kylechar <kylechar@chromium.org> Cr-Commit-Position: refs/heads/master@{#732988}
-
Olga Gerchikov authored
Scheduling frame for scroll linked animations regardless of the scroller updates makes scroll animations inefficient. This change schedules next frame only when scroll timeline current time changes. The change assumes that animation timeline scheduling runs (via DocumentAnimations::UpdateAnimations) at the end of any frame in which scroll timeline (i.e. its offset, range, overflow) is invalidated. Bug: 1039750 Change-Id: Ib87a298e6d09cbeb85276cea4c165022b76f3732 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1990003 Commit-Queue: Olga Gerchikov <gerchiko@microsoft.com> Reviewed-by:
Robert Flack <flackr@chromium.org> Cr-Commit-Position: refs/heads/master@{#732987}
-
Takumi Fujimoto authored
The button text changes its color depending on the background color to stay legible. This CL specifies the correct background color (that of ScrollView that the button is contained in) so that the text is rendered in a legible color. Bug: 1033670 Change-Id: Ib5c3f15a5e6512a2d259f5fd20dce7fb58ce13a0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008057 Commit-Queue: Takumi Fujimoto <takumif@chromium.org> Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#732986}
-
Anders Hartvoll Ruud authored
Now that the underlying issues are fixed, let's enable these tests again. BUG=983728, 983608, 1042644 R=futhark@chromium.org Change-Id: Ide367e47806995c15c185f95f03b21524c1b7058 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2002586Reviewed-by:
Mikhail Khokhlov <khokhlov@google.com> Reviewed-by:
Caleb Rouleau <crouleau@chromium.org> Reviewed-by:
Rune Lillesveen <futhark@chromium.org> Commit-Queue: Caleb Rouleau <crouleau@chromium.org> Cr-Commit-Position: refs/heads/master@{#732985}
-
Robbie McElrath authored
This CL makes the IVariationsSeedServer.getSeed implementation start (via Context.startService) the VariationsSeedServer on each call, and stop it when all pending calls have completed. Normally services would stay alive by being bound while handling IPCs, but VariationsSeedLoader unbinds from the service immediately after calling getSeed, so it's possible for Android to kill the service before getSeed has finished executing. Starting the service effectively makes it manage its own lifecycle and ensure it stays running until it has finished its work. See https://developer.android.com/guide/components/bound-services We have no evidence that the service is actually being killed prematurely in the wild since we have no way of detecting it, but this is still a potential bug that should be fixed. Test: out/aw/bin/run_webview_instrumentation_test_apk -f \ Test: 'VariationsSeedHolderTest#*' Bug: 1040625 Change-Id: I5c5b0fdfa4deb43bf69b5d56edf0273073d4b1be Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1995768Reviewed-by:
Changwan Ryu <changwan@chromium.org> Reviewed-by:
Nate Fischer <ntfschr@chromium.org> Commit-Queue: Robbie McElrath <rmcelrath@chromium.org> Cr-Commit-Position: refs/heads/master@{#732984}
-
Zhuoyu Qian authored
This CL update the functions InvalidateUsageCache and StickyInvalidateUsageCache of SandboxFileSystemBackendDelegate to use dedicated Origin type instead of GURL. Change SandboxQuotaObserver::SetUsageCacheEnabled also, because it only called in StickyInvalidateUsageCache. Bug: 598424 Change-Id: Ibd7edbef3b40dd48a14f63bb18d9cb1c357a86a7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2006902 Commit-Queue: Victor Costan <pwnall@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#732983}
-
Evan Stade authored
FindBar* classes including FindBarController and FindBarState aren't needed by WebLayer, so those are left behind. Bug: 1038415 Change-Id: Ied5f1d57162d174c18c835e239ad454ccb5188ae Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1993904 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Ken Rockot <rockot@google.com> Cr-Commit-Position: refs/heads/master@{#732982}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/db6ca7f2d7fd..44509036060c git log db6ca7f2d7fd..44509036060c --date=short --first-parent --format='%ad %ae %s' 2020-01-17 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 862d9d7b..1ae08c8c (732747:732864) 2020-01-17 ilnik@webrtc.org RtpReferenceFrameFinder: protect against crashes due to large temporal idx value on the wire 2020-01-17 jsphchn@google.com Update RTCAudioSession isInterrupted state when audio session is activated while interrupted. 2020-01-17 danilchap@webrtc.org Move Offset constants from VideoSendTiming value to VideoTimingExtension class 2020-01-17 srte@webrtc.org Adds current thread to yielders in SimulatedThread::SendTask. Created with: gclient setdep -r src/third_party/webrtc@44509036060c If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/webrtc-chromium-autoroll Please CC webrtc-chromium-sheriffs-robots@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/+/master/autoroll/README.md Bug: chromium:1042933 Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: If944c76dacbc185ae7a2f94e44c31fda856101d9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008170Reviewed-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@{#732981}
-
kylechar authored
It's not used anywhere. Bug: 936425 Change-Id: Ifff668d1485060a6fa41e0b6f6a2452f45722e7c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2005868Reviewed-by:
Jonathan Ross <jonross@chromium.org> Commit-Queue: kylechar <kylechar@chromium.org> Cr-Commit-Position: refs/heads/master@{#732980}
-
Brandon Wylie authored
When the browser is recreated after a theme swap, the current model isn't necessarily the same before/after recreate() is called. Bug: 1042565 Change-Id: Icc63273b1690ec0fc5101c0abd252e0eef816469 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2006269Reviewed-by:
Yusuf Ozuysal <yusufo@chromium.org> Commit-Queue: Brandon Wylie <wylieb@chromium.org> Cr-Commit-Position: refs/heads/master@{#732979}
-
Robbie McElrath authored
This moves AwSwitches to org.chromium.android_webview.common so flags can be used outside the browser process. This was broken off from crrev.com/c/2002897 to keep the change history correct. Test: ninja -C out/aw system_webview_apk Bug: 1035235 Change-Id: I283273ad70d6b9b71efefc9c198be3f796e8c8f3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2003031 Commit-Queue: Robbie McElrath <rmcelrath@chromium.org> Reviewed-by:
Nate Fischer <ntfschr@chromium.org> Reviewed-by:
Changwan Ryu <changwan@chromium.org> Cr-Commit-Position: refs/heads/master@{#732978}
-
Piotr Bialecki authored
- ran ESLint on webxr-test.js and xr-internal-device-mocking.js - xr-internal-device-mocking.js now stores the `MockRuntime._injectAdditionalFrameData()` before overwriting it with its own implementation, and calls the original implementation as the first step - throw instead of console.warn when math helper encounters unexpected combinations of .w component Changes: Change-Id: I94c015b5c89cfbc0e1a4b90db6ec44a198f4ce05 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008073 Commit-Queue: Piotr Bialecki <bialpio@chromium.org> Commit-Queue: Klaus Weidner <klausw@chromium.org> Auto-Submit: Piotr Bialecki <bialpio@chromium.org> Reviewed-by:
Klaus Weidner <klausw@chromium.org> Cr-Commit-Position: refs/heads/master@{#732977}
-
proberge authored
This change adds a small (0 to 5 minutes) delay to scheduled policy fetches in order to alleviate server-side traffic spikes. The delay is randomly set at policy initialization time in the CloudPolicyRefreshScheduler constructor. To avoid causing issues with ChromeOS' synchronous policy fetches, we skip adding the delay in some cases. Bug: 963910 TEST: updated logic of component_unittest and one unit_tests Change-Id: Ic02ac2ef18e7e7b03ac95bdfab19e946c2f46324 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1998789Reviewed-by:
Pavol Marko <pmarko@chromium.org> Reviewed-by:
Owen Min <zmin@chromium.org> Commit-Queue: proberge <proberge@chromium.org> Cr-Commit-Position: refs/heads/master@{#732976}
-
chromium-autoroll authored
https://chromium.googlesource.com/external/github.com/google/shaderc/+log/f53792645f06..c6a2ef12dffc git log f53792645f06..c6a2ef12dffc --date=short --first-parent --format='%ad %ae %s' 2020-01-17 rharrison@google.com Change call in shaderc_spvc_needs_buffer_size_buffer to be correct (#964) Created with: gclient setdep -r src/third_party/shaderc/src@c6a2ef12dffc If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/shaderc-chromium-autoroll Please CC radial-bots+chrome-roll@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/+/master/autoroll/README.md Bug: None Tbr: radial-bots+chrome-roll@google.com Change-Id: I56a314aaa8b3c7f67ea92b74a484673158f71ba8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008171Reviewed-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@{#732975}
-
Zhuoyu Qian authored
This CL change the class SandboxFileSystemTestHelper to use dedicated Origin type instead of GURL. Bug: 598424 Change-Id: I72eeda87aa6a32ffeeb5e61957e9df87d4642a7b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2007088 Commit-Queue: Victor Costan <pwnall@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#732974}
-
Toni Barzic authored
When active user changes, the old app icon loaders are reset, and the currently loaded app icons are discarded. This means that they have to be refetched while rebuilding pinned icons for the new user. Adds back ChromeLauncherController::OnAppUpdated (called from UpdateAppLaunchersFromSync() during user switch), and re-purposes it to ensure an icon is loaded for pinned apps. BUG=1040486 Change-Id: I553af66cd5fc2e1df9e285fff45290605eee58a8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2005228Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Nancy Wang <nancylingwang@chromium.org> Commit-Queue: Toni Baržić <tbarzic@chromium.org> Cr-Commit-Position: refs/heads/master@{#732973}
-
Sebastien Marchand authored
This code has been removed in https://chromium-review.googlesource.com/c/chromium/src/+/1960077 Bug: 1025842 Change-Id: I39cb113b784c29f7306c164df9cda693692b65b1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2002933Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Sébastien Marchand <sebmarchand@chromium.org> Auto-Submit: Sébastien Marchand <sebmarchand@chromium.org> Cr-Commit-Position: refs/heads/master@{#732972}
-
Swapnil authored
extensions This is to get a better idea about why the force installed extension failed to unpack through UMA statistics by reporting Sandbox Unpack failure reason in the InstallationTracker. Following histogram is added: Extensions.ForceInstalledFailureSandboxUnpackFailureReason Bug: 981891 Change-Id: Ia11f2603744e6b6f828bca6c3cba5f67e3a9c257 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1992062 Commit-Queue: Swapnil Gupta <swapnilgupta@google.com> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Sergey Poromov <poromov@chromium.org> Reviewed-by:
Oleg Davydov <burunduk@chromium.org> Cr-Commit-Position: refs/heads/master@{#732971}
-
CQ_INCLUDE_TRYBOTS=luci.chrome.try:chromeos-eve-compile-chrome CQ_INCLUDE_TRYBOTS=luci.chrome.try:chromeos-kevin-compile-chrome BUG=762641 TBR=chrome-os-gardeners@google.com Change-Id: I0150fb957dcd929ca9889a4e817ae7b7e1d1ff4a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2002635Reviewed-by:
ChromeOS bot <3su6n15k.default@developer.gserviceaccount.com> Commit-Queue: Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#732970}
-
Mugdha Lakhani authored
Change-Id: Id4288fe389c42ecd3c53d1cdc636cde4129e59ef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2000921 Commit-Queue: Mugdha Lakhani <nator@chromium.org> Reviewed-by:
Tobias Sargeant <tobiasjs@chromium.org> Cr-Commit-Position: refs/heads/master@{#732969}
-
Brian Geffon authored
BUG=chromium:1014871 Change-Id: I76375fadefee910ed7274f984c91d46dc499fe0d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2002834 Auto-Submit: Brian Geffon <bgeffon@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Brian Geffon <bgeffon@chromium.org> Cr-Commit-Position: refs/heads/master@{#732968}
-
Mohammad Refaat authored
This addition makes sure that calling the restoreSession method from the agent has the same effect as calling it from the TabModel. Also forward the call from TabModel to call IsRestoringSession of SessionRestorationAgent. Bug: 1010164, 783777 Change-Id: Ib4fdfb1c1fe4fc04515b8e4462f3f68df0c9453f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2003911 Commit-Queue: Mohammad Refaat <mrefaat@chromium.org> Reviewed-by:
Mark Cogan <marq@chromium.org> Cr-Commit-Position: refs/heads/master@{#732967}
-
Dan Beam authored
Fixed: 1042572 Change-Id: I4928cdae0ac882921e8083193a36570f41b32c2c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2005827 Commit-Queue: Dan Beam <dbeam@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Auto-Submit: Dan Beam <dbeam@chromium.org> Cr-Commit-Position: refs/heads/master@{#732966}
-
Yi Gu authored
This is a follow-up patch of crrev.com/c/1962567 to support transform inducing resnapping. Bug: 1028316 Change-Id: Ie1ae2f088919665c6ddfbf3d8a9dce119d066f8b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2008061Reviewed-by:
David Bokan <bokan@chromium.org> Commit-Queue: Yi Gu <yigu@chromium.org> Cr-Commit-Position: refs/heads/master@{#732965}
-
rbpotter authored
Remove some noise for screen readers in dialogs by moving non-title elements out of the [slot='title']. Anything in this slot is read out when the dialog loads. Move these elements to the body instead. This change requires updating some CSS styling, in order to keep the lists the only piece of the dialog that scrolls and to keep the appearance of the dialogs the same. Bug: 987324 Change-Id: I0ae6f7b338b7df988c12289f7eca2e876bd99a92 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2006216 Commit-Queue: Rebekah Potter <rbpotter@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#732964}
-
jonross authored
We have removed the usage of --fuzzy-diff on Linux: https://chromium-review.googlesource.com/c/chromium/src/+/1989866 A series of tests were identified in that patch as failing without the fuzzy-diff. Here we attempt to re-enable, running a rebaseline. Many tests had linux specific baselines deleted. Others have been updated. This reflects some tests with small pixel differences. As well as some where the style of the controls has been changed. Two tests feature new linux specific baselines. There is no diff as in the review as they did not exist before. Both represent slight shifts in the font: third_party/blink/web_tests/platform/linux/virtual/controls-refresh-hc/virtual/controls-refresh/color-scheme/text-selection-outside-control-expected.png third_party/blink/web_tests/platform/linux/virtual/controls-refresh/color-scheme/text-selection-outside-control-expected.png TEST= blink_web_tests Bug: 1039401 Change-Id: I102cf9cee9c85daa3f5c00cbe185fead1fea3abf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1993424 Commit-Queue: Jonathan Ross <jonross@chromium.org> Reviewed-by:
Mason Freed <masonfreed@chromium.org> Cr-Commit-Position: refs/heads/master@{#732963}
-
Kevin Marshall authored
A bug in the Blink renderer required that we use a 2x2 rect for the simulated browser window instead of a 1x1 rect. cl/2002839 fixes that issue, so we can now use the smallest possible dimensions. Bug: 1039762 Change-Id: I89a24547f6a0ef62d9f0476e1ffff83dd5df32c6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2003395Reviewed-by:
Wez <wez@chromium.org> Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Cr-Commit-Position: refs/heads/master@{#732962}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/243095cddff8..7b0e33db0c16 Created with: gclient setdep -r src-internal@7b0e33db0c16 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 jbudorick@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/+/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: chromium:1034144,chromium:1042660,chromium:1042712,chromium:1042717 Tbr: jbudorick@google.com Change-Id: Id73f0c22b9aea7606116afe909a7a84ba02779dd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2007927Reviewed-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@{#732961}
-
Kenneth Russell authored
I haven't made contributions to this area of the code for a long time. Bug: none Change-Id: I7aa03680fe8f087677c11a57fa519e790ba2f2d0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2007654 Commit-Queue: Kenneth Russell <kbr@chromium.org> Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Cr-Commit-Position: refs/heads/master@{#732960}
-
Vikas Soni authored
1. Enable shared images by default on webview via finch feature flag. 2. Update Shared image factory usage to use correct backings for webview. 3. Implement and use a dummy version of MailboxManagerSync to be used only when shared images are enabled on webview. Bug: 900973 Change-Id: I2cc046b8bb5fa9121d6c90a2670d378ff3fe0258 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1977842 Commit-Queue: vikas soni <vikassoni@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Reviewed-by:
Eric Karl <ericrk@chromium.org> Cr-Commit-Position: refs/heads/master@{#732959}
-
sukwanlee authored
Bug: 1042407 Change-Id: Ifd15c599bee387e54ff2edabb92565a667055005 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2003365 Commit-Queue: Sukwan Lee <sukwanlee@chromium.org> Reviewed-by:
Daniel Rubery <drubery@chromium.org> Reviewed-by:
Roger Tawa <rogerta@chromium.org> Cr-Commit-Position: refs/heads/master@{#732958}
-
jongdeok.kim authored
This CL adds a border color to views::Border, and remove a color memeber in subclasses. Bug: None Change-Id: I5598325d4baac305c145b933889fea96de6d3bb9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1985635Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Commit-Queue: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#732957}
-
Avi Drissman authored
Collect basic information as to whether the Mac is joined to a domain, or if it is controlled by MDM. Tbr: pastarmovj@chromium.org, asvitkine@chromium.org, mark@chromium.org Bug: 1040630 Change-Id: Idcc3fbeca66b9b5278965d5219851e51a20f3da6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2007511Reviewed-by:
Mark Mentovai <mark@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/master@{#732956}
-
Kyle Horimoto authored
Fixed: 1042316 Change-Id: Id013c917732d00c65b4f2533a697ffbd1c4ccb67 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2006422Reviewed-by:
James Cook <jamescook@chromium.org> Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Auto-Submit: Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#732955}
-
Joe DeBlasio authored
This CL changes the mixed content download blocking code to return an enum indicating what type of blocking should be used (silent, or two types of blocking UI). Previously, this function returned a boolean that indicated silent blocking. The CL then propagates that result through the DownloadTargetDeterminer into the DownloadItem. That state is needed later to trigger the existing download shelf warning UI. This CL also renames callbacks in/around the DownloadTargetDeterminer from "ShouldBlock"-type names to "GetMixedContentStatus"-type names. This CL causes no functional change to Chrome. Follow-up CLs will add support for, then trigger, user-visible warnings. This is part of go/downloads-as-mixed-content . Bug: 960819 Change-Id: Ic0c3f41caf7e623050d4b75be364f410a46e296d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1982680Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Evan Stade <estade@chromium.org> Reviewed-by:
Sean Topping <seantopping@chromium.org> Reviewed-by:
Min Qin <qinmin@chromium.org> Commit-Queue: Joe DeBlasio <jdeblasio@chromium.org> Cr-Commit-Position: refs/heads/master@{#732954}
-
Darwin Huang authored
Bug: 1042145, 1042578, 1042700 Change-Id: If611c01b0b4e507376d187292809d50b9c786932 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2006427Reviewed-by:
Chris Mumford <cmumford@google.com> Commit-Queue: Darwin Huang <huangdarwin@chromium.org> Cr-Commit-Position: refs/heads/master@{#732953}
-