- 16 Nov, 2018 40 commits
-
-
Marc Treib authored
Sync-the-feature requires a primary account, so this is more accurate. Bug: 871221 Change-Id: Iadd226c28d0d82cc86640a3c210f95505a219465 Reviewed-on: https://chromium-review.googlesource.com/c/1339939 Commit-Queue: Marc Treib <treib@chromium.org> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#608774}
-
Clemens Hammacher authored
This makes use of the new fuzzer-specific asan_options, msan_options and ubsan_options. Wasm fuzzers need to be able to install custom segfault handlers, and v8-generated code sometimes uses SIGTRAP in internal code assertions. We might need to allow segfault handlers for more fuzzers (if it's not the default anyway), but this CL is conservative here and only adds it to selected fuzzers. We can still add more later. R=ahaas@chromium.org, mmoroz@chromium.org Bug: chromium:863799 Change-Id: I3fa24b60851501b9c194f7b0cf131cb19325972e Reviewed-on: https://chromium-review.googlesource.com/c/1335572 Commit-Queue: Clemens Hammacher <clemensh@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Cr-Commit-Position: refs/heads/master@{#608773}
-
Gabriel Charette authored
This is a prereq for https://chromium-review.googlesource.com/c/chromium/src/+/1338221 without this change, the MTA assertions fail in unit tests even though they are correct in prod. This change matches the browser process' params @ content/browser/startup_helper.cc It has the adverse side-effect however of enabling the MTA in renderer unit tests but the downside there is not as bad as it just means some COM asserts may pass in unit tests where they wouldn't in integration tests or prod. I think that's okay because unit tests are already generally very loose on allowing I/O, waits, etc. Misuse will still be caught, but that's just not unit tests' main role. R=fdoray@chromium.org Bug: 708584, 707362 Change-Id: I68c5e41c24396885af43427d09c11e1e84ecea43 Reviewed-on: https://chromium-review.googlesource.com/c/1338305 Commit-Queue: Gabriel Charette <gab@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#608772}
-
Michael Lippautz authored
The GCObservation handle is always set and empty state implies that the observed object was garbage collection. Use phantom reference which avoids clearing out the reference manually. Bug: 903586, 843903 Change-Id: I77e6e9d9ef4625d4bb91b3907b0d1b69c17f2208 Reviewed-on: https://chromium-review.googlesource.com/c/1340320Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#608771}
-
Antonio Gomes authored
This CL removes the direct needs to SigninManager and PO2TS from UserCloudPolicyManagerChromeOSTest code. CL also removes left-over code from [1], namely kChildAccountId, kChildTestGaiaId and ::AddAndSwitchToChildAccountWithProfile. [1] https://crrev.com/c/1089462 BUG=894075,904358 Change-Id: Ibfddebed7747a2f3cf0a4e8cadf9a4b71d804e18 Reviewed-on: https://chromium-review.googlesource.com/c/1332748Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Maksim Ivanov <emaxx@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#608770}
-
Michael Lippautz authored
Change-Id: I4ad3be28aba7c7620e766e1cd5ad5bc81629615c Reviewed-on: https://chromium-review.googlesource.com/c/1339871Reviewed-by:
Keishi Hattori <keishi@chromium.org> Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#608769}
-
Etienne Pierre-doray authored
Original CL intention was: Use ScopedBlockingCallWithBaseSyncPrimitives to annotate sync primitives. Migrate AssertBaseSyncPrimitivesAllowed() to ScopedBlockingCallWithBaseSyncPrimitives in base::Process. Bug: 903957, 905788 Change-Id: Ief5072d7e9b9feaf1ee7b817add26545bf80b78a Reviewed-on: https://chromium-review.googlesource.com/c/1324418Reviewed-by:
François Doray <fdoray@chromium.org> Reviewed-by:
Gabriel Charette <gab@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#608768}
-
Mustaq Ahmed authored
This fixes the following three tests for UAv2: - BrowserActionApiTest.TestPictureInPictureOnBrowserActionIconClick - PictureInPictureLazyBackgroundPageApiTest.PictureInPictureInBackgroundPage - NotificationsApiTest.TestUserGesture Bug: 860718 Change-Id: I004f7a3922b7b9f39f4371c0dfdd439c6f0b9a07 Reviewed-on: https://chromium-review.googlesource.com/c/1336029Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Commit-Queue: Mustaq Ahmed <mustaq@chromium.org> Cr-Commit-Position: refs/heads/master@{#608767}
-
Josh Karlin authored
The problem: The BackgroundSyncManager would attempt to fire a sync event as soon as it finished registering an event and fired its client callback. The client callback and the firing of the event could race since the client callback happens on the background sync mojo channel but the event firing happens on the service worker mojo channel. This meant that a registration might fire before its registration promise resolved. The fix: The BackgroundSyncManager sets a "hold_firing" bit on new registrations and won't fire them until the client has acknowledged it has received its registration callback with a DidResolveRegistration IPC. Bug: 671980 Change-Id: Ie5f982776bffc8913033fba6ec2743a18fcfd964 Reviewed-on: https://chromium-review.googlesource.com/c/1307934Reviewed-by:
Ian Clelland <iclelland@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Commit-Queue: Josh Karlin <jkarlin@chromium.org> Cr-Commit-Position: refs/heads/master@{#608766}
-
Camillo Bruni authored
This CL was created automatically with tools/perf/update_wpr script R=perezju@chromium.org Bug: 878390 Change-Id: Iaf4ac2022102652c9f5ae38a2b778f5c26620532 Reviewed-on: https://chromium-review.googlesource.com/c/1329744Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#608765}
-
Tanja Gornak authored
UMA metrics that represent the total E2E latency in the life of a sync change. Per committed sync entity, the elapsed time between the local model being changed (e.g. password created) to the corresponding (reflection) updates processed by the datatype model on the same device (we’ll disable reflection-blocking). Bug: 902343 Change-Id: Iaec9824016662d2ee984419824bde05ea99a32d4 Reviewed-on: https://chromium-review.googlesource.com/c/1292567Reviewed-by:
Jesse Doherty <jwd@chromium.org> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Commit-Queue: Tatiana Gornak <melandory@chromium.org> Cr-Commit-Position: refs/heads/master@{#608764}
-
Gauthier Ambard authored
This CL moves the utils and constants files for the toolbar to the public folder as multiple components are using them. Bug: none Change-Id: I2334a01bc8ffaa93979f0fe08611980eb42d29f3 Reviewed-on: https://chromium-review.googlesource.com/c/1335589 Commit-Queue: Gauthier Ambard <gambard@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Reviewed-by:
Stepan Khapugin <stkhapugin@chromium.org> Cr-Commit-Position: refs/heads/master@{#608763}
-
Morten Stenshorne authored
writing-system-segment-break-001.html fails in legacy layout, but not in LayoutNG. Also moved two failure expectation lines to the right place. They clearly don't belong in the "New passes" category. TBR=kojii@chromium.org Bug: 905629 Change-Id: Ie3d036d53defbbbbb78d86313c56fe885b602d69 Reviewed-on: https://chromium-review.googlesource.com/c/1340302 Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#608762}
-
Stepan Khapugin authored
1. Makes the NTP tiles have a11y type of Button 2. Matches the a11y behavior of the NTP tiles for shortcuts. Change-Id: I295f4b23776c0ede8209b86d02c4becbc6d3dd23 Reviewed-on: https://chromium-review.googlesource.com/c/1335597 Commit-Queue: Stepan Khapugin <stkhapugin@chromium.org> Reviewed-by:
Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#608761}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/c30f45d3f9c1..9e63a8137860 git log c30f45d3f9c1..9e63a8137860 --date=short --no-merges --format='%ad %ae %s' 2018-11-16 jmadill@chromium.org Revert "Minor inlining optimization to Context draw calls." Created with: gclient setdep -r src/third_party/angle@9e63a8137860 The AutoRoll server is located here: https://autoroll.skia.org/r/angle-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 TBR=cwallez@chromium.org Change-Id: I474fcfb94c08e9f122b5c436ce1eee14d70bd39d Reviewed-on: https://chromium-review.googlesource.com/c/1340144Reviewed-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@{#608760}
-
Lukasz Suder authored
If there is a difference between current and new details it's highlighted and two chips are displayed; to allow move forward or go back (which closes CCT). Screenshot: https://screenshot.googleplex.com/kOoC3B1frUp Bug: 806868 Change-Id: I95ff09c379398d5a5858aa3947d4c578f39b14c9 Reviewed-on: https://chromium-review.googlesource.com/c/1335941 Commit-Queue: Lukasz Suder <lsuder@chromium.org> Reviewed-by:
Stephane Zermatten <szermatt@chromium.org> Cr-Commit-Position: refs/heads/master@{#608759}
-
Peter E Conn authored
Web App Manifests allow icons to be specified with the "maskable" purpose [1]. These icons are designed with enough space on the sides to allow the user agent to mask them (eg, cut the icon into a circle). On devices that support this, attempt to load a maskable icon. [1] https://w3c.github.io/manifest/#purpose-member Bug: 904354 Change-Id: I08c404d7b956e678b37f995e9ae0d3f13a5a49fe Reviewed-on: https://chromium-review.googlesource.com/c/1333778 Commit-Queue: Peter Conn <peconn@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Reviewed-by:
Matt Giuca <mgiuca@chromium.org> Cr-Commit-Position: refs/heads/master@{#608758}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/b053faa13970..b81a9c76c982 git log b053faa13970..b81a9c76c982 --date=short --no-merges --format='%ad %ae %s' 2018-11-16 perezju@chromium.org [soundwave] Run soundwave scripts using vpython 2018-11-16 perezju@chromium.org [soundwave] Migrate isolate_service to luci-auth Created with: gclient setdep -r src/third_party/catapult@b81a9c76c982 The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-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:904441,chromium:903026 TBR=sullivan@chromium.org Change-Id: I348fa92c0279d3a9eb309b221a3359b7f9bd991e Reviewed-on: https://chromium-review.googlesource.com/c/1340146Reviewed-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@{#608757}
-
Chromium WPT Sync authored
Using wpt-import in Chromium f45d57d6. 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: rego@igalia.com: external/wpt/css/css-grid NOAUTOREVERT=true TBR=lukebjerring No-Export: true Change-Id: I63ef6212955c636b66a1feb49e102887fd1c0ec7 Reviewed-on: https://chromium-review.googlesource.com/c/1340141 Commit-Queue: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Reviewed-by:
WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#608756}
-
Mugdha Lakhani authored
Start a background fetch in a paused state whenever appropriate instead of starting and then pausing on the first update. This is now possible after the following change went in: https://chromium-review.googlesource.com/c/chromium/src/+/1265556 Bug: 903248 Change-Id: I55f613de9f7ebf36ec3daa971067e8cd34d44bed Reviewed-on: https://chromium-review.googlesource.com/c/1337627 Commit-Queue: Mugdha Lakhani <nator@chromium.org> Reviewed-by:
Peter Beverloo <peter@chromium.org> Reviewed-by:
Rayan Kanso <rayankans@chromium.org> Cr-Commit-Position: refs/heads/master@{#608755}
-
Marc Treib authored
We were already using SetChosenDataTypes. Unfortunately, GetPreferredDataTypes must still be exposed to the Java side because invalidations code needs it. Bug: 884159 Change-Id: I42745e28a312a3ad0494392d2a283c75fa36b08e Reviewed-on: https://chromium-review.googlesource.com/c/1339865Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Commit-Queue: Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#608754}
-
Maxim Kolosovskiy authored
Before this CL, |PasswordAutofillAgent| creates a |PasswordForm| when a form is submitted, and copies some data from |provisionally_saved_form_|. If a site clears field values, the submitted form will miss some useful data. For example, confirmation field can be detected only if there are non-empty field values. After this CL, a |provisionally_saved_form_| will be used. It is updated on every user keystroke. So, Javascript can not corrupt the data at submission time. Change-Id: I080f97e5dcf0b3dd184c22900303a35669edef2e Reviewed-on: https://chromium-review.googlesource.com/c/1337508Reviewed-by:
Vadym Doroshenko <dvadym@chromium.org> Commit-Queue: Maxim Kolosovskiy <kolos@chromium.org> Cr-Commit-Position: refs/heads/master@{#608753}
-
Ruslan Burakov authored
link to the experiment thread https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/hE2B1iItPDk Bug: chromium:904764 Change-Id: Ic89e7915a21c60868e0a25b5a9ba160956f86c69 Reviewed-on: https://chromium-review.googlesource.com/c/1332194 Commit-Queue: Ruslan Burakov <kuddai@google.com> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Cr-Commit-Position: refs/heads/master@{#608752}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/66a44ccac54e..c6ad86b66386 git log 66a44ccac54e..c6ad86b66386 --date=short --no-merges --format='%ad %ae %s' 2018-11-16 fmayer@google.com Merge "profiling: Improve connection management." Created with: gclient setdep -r src/third_party/perfetto@c6ad86b66386 The AutoRoll server is located here: https://autoroll.skia.org/r/perfetto-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. TBR=perfetto-bugs@google.com Change-Id: Ia6043aa4e5030c63a956e8d19193bb6a01a5d2d5 Reviewed-on: https://chromium-review.googlesource.com/c/1340142Reviewed-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@{#608751}
-
Vadym Doroshenko authored
If server predicitons are cached, then often PasswordManager receives them earlier than learns about a corresponding form in DOM. So NewPasswordFormManager is created later. And predictions are lost. This CL fixes this, by caching predictions in PasswordManager. Bug: 905982, 831123 Change-Id: I833fe675c3c621edbae31d5b449e274c7d5a33e6 Reviewed-on: https://chromium-review.googlesource.com/c/1338101 Commit-Queue: Vadym Doroshenko <dvadym@chromium.org> Reviewed-by:
Vaclav Brozek <vabr@chromium.org> Cr-Commit-Position: refs/heads/master@{#608750}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/4b4a9d92fc53..7893fd8c43b1 Created with: gclient setdep -r src-internal@7893fd8c43b1 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. TBR=mmoss@chromium.org Change-Id: I13538a8e7aba6a740d4e1f42b9fd87cac42daeb0 Reviewed-on: https://chromium-review.googlesource.com/c/1339483Reviewed-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@{#608749}
-
Gauthier Ambard authored
This CL makes sure that the value returned by -pinnedYOffset is adjusted to the nearest pixel. This is because when the content size isn't the default one, the value isn't adjusted on a pixel. When it is used to compare to the scroll value of the collection view, this gap prevents the collection view from being considered as completely scrolled. Bug: 905276 Change-Id: Ia44de6063b039a022fcde95e015c3e7df4259308 Reviewed-on: https://chromium-review.googlesource.com/c/1337490 Commit-Queue: Gauthier Ambard <gambard@chromium.org> Reviewed-by:
Justin Cohen <justincohen@chromium.org> Cr-Commit-Position: refs/heads/master@{#608748}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/0c33d62e0821..b053faa13970 git log 0c33d62e0821..b053faa13970 --date=short --no-merges --format='%ad %ae %s' 2018-11-16 dtu@chromium.org [pinpoint] Show chart even if the job failed. 2018-11-16 dtu@chromium.org [pinpoint] Fix CIPD / vpython arguments to Swarming. 2018-11-16 perezju@chromium.org [soundwave] Migrate dashboard_services to luci_auth Created with: gclient setdep -r src/third_party/catapult@b053faa13970 The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-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:901630,chromium:905807,chromium:903026 TBR=sullivan@chromium.org Change-Id: I9aa456cfa9804629f7bc66b15091f6825fca4af7 Reviewed-on: https://chromium-review.googlesource.com/c/1340140Reviewed-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@{#608747}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/c735b4f9dc50..6e486cec6a10 git log c735b4f9dc50..6e486cec6a10 --date=short --no-merges --format='%ad %ae %s' 2018-11-16 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 d9ee8bf96207..c30f45d3f9c1 (1 commits) Created with: gclient setdep -r src/third_party/skia@6e486cec6a10 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-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;master.tryserver.blink:linux_trusty_blink_rel TBR=rmistry@chromium.org Change-Id: Ie74b7d56fd8cd586851c9800bb7587bbf0776e80 Reviewed-on: https://chromium-review.googlesource.com/c/1340139Reviewed-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@{#608746}
-
Guido Urdaneta authored
This fixes a clusterfuzz crash that is hard to reproduce in test environments. Bug: 899575 Change-Id: Ic901c580769ab539850d97360e28727078033e56 Reviewed-on: https://chromium-review.googlesource.com/c/1338084 Commit-Queue: Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#608745}
-
Mikel Astiz authored
It's dead code except for tests and can be safely deleted. UKM tests may be affected by the change because they exercised SyncTestUtil.waitForCryptographer(), but it seems like the later triggerSyncAndWaitForCompletion() should guarantee the same condition (cryptographer has been updated). Bug: 903284 Change-Id: I5b595953b80e039a0349539a1c7162576b43924d Reviewed-on: https://chromium-review.googlesource.com/c/1288392 Commit-Queue: Mikel Astiz <mastiz@chromium.org> Reviewed-by:
Mohamed Amir Yosef <mamir@chromium.org> Cr-Commit-Position: refs/heads/master@{#608744}
-
Nikita Podguzov authored
Bug: 807068 Change-Id: I9d7878df52f4356cd6fa7295f29ce0f12dd08920 Reviewed-on: https://chromium-review.googlesource.com/c/1299165Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Mattias Nissler <mnissler@chromium.org> Reviewed-by:
Sergey Poromov <poromov@chromium.org> Reviewed-by:
Maksim Ivanov <emaxx@chromium.org> Reviewed-by:
Sean Kau <skau@chromium.org> Commit-Queue: Nikita Podguzov <nikitapodguzov@google.com> Cr-Commit-Position: refs/heads/master@{#608743}
-
Marc Treib authored
SyncUserSettings is a new class that encapsulates all the user-configurable knobs for Sync. It replaces a bunch of setters and getters directly on the SyncService. Bug: 884159 Change-Id: I329cace9810d0b606b755a39574471516bc21665 Reviewed-on: https://chromium-review.googlesource.com/c/1339870Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Commit-Queue: Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#608742}
-
Alexander Timin authored
Support using SequenceManager in addition to MessageLoopImpl in MessageLoop backends. After this patch Mac message pump may start running two application tasks in one cycle when SequenceManager backend is used. Design doc: https://docs.google.com/document/d/1v3kap50cfF7YJtpogEFLK0iGRFyJNsNgbqi7FmJ2wWY/edit# R=gab@chromium.org,alexclarke@chromium.org TBR=gab@chromium.org BUG=891670 Change-Id: I9e3d873a6d6f884bb827ec12a9943c9243e2caa6 Reviewed-on: https://chromium-review.googlesource.com/c/1304559 Commit-Queue: Alexander Timin <altimin@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Reviewed-by:
Gabriel Charette <gab@chromium.org> Reviewed-by:
Alex Clarke <alexclarke@chromium.org> Cr-Commit-Position: refs/heads/master@{#608741}
-
Alexander Hendrich authored
This CL runs yapf on all python files in components/policy/tools/* $find components/policy/tools/ -type f -name '*.py' -exec yapf -i {} \; Bug: none Change-Id: I2d9341b9d4169ebb8a6033764cc2b6a321e79c55 Reviewed-on: https://chromium-review.googlesource.com/c/1337504 Commit-Queue: Alexander Hendrich <hendrich@chromium.org> Reviewed-by:Lutz Justen <ljusten@chromium.org> Cr-Commit-Position: refs/heads/master@{#608740}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/68fee3ed..9a063976 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: Ie29ed5a7864dea819159276be81e2664b4180fc4 Reviewed-on: https://chromium-review.googlesource.com/c/1340059Reviewed-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@{#608739}
-
Makoto Shimazu authored
Intent to Implement and Ship: https://groups.google.com/a/chromium.org/d/msg/blink-dev/V4ZqlL0ngC4/-VeAA6qvAQAJ The original CL was https://crrev.com/c/1053431. This CL is based on that. Before this CL, ServiceWorkerProviderHost::client_uuid() always returns the same value, but it's actually needed to be renewed when cross origin redirect happens. It became observable by introducing resultingClientId. This CL tries to update the client id when cross origin redirect. Bug: 778497 Change-Id: I7b1490dbe2b2038953bb923d355b42d9d8dd0bd0 Reviewed-on: https://chromium-review.googlesource.com/c/1331105Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Commit-Queue: Makoto Shimazu <shimazu@chromium.org> Cr-Commit-Position: refs/heads/master@{#608738}
-
Tanja Gornak authored
Bug: 801985 Change-Id: I2571946f84f4fd0e00f132451a93224d3faabaee Reviewed-on: https://chromium-review.googlesource.com/c/1328962Reviewed-by:
Jesse Doherty <jwd@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Commit-Queue: Tatiana Gornak <melandory@chromium.org> Cr-Commit-Position: refs/heads/master@{#608737}
-
Marc Treib authored
Bug: 884159 Change-Id: Ibcb7f843551c3e052610d3847b2537ee27a575fb Reviewed-on: https://chromium-review.googlesource.com/c/1339960Reviewed-by:
Mohamed Amir Yosef <mamir@chromium.org> Commit-Queue: Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#608736}
-
Sylvain Defresne authored
Add implementation and test for PrimaryAccountMutatorImpl method SetPrimaryAccount. The method is the new API that will replace SigninManager::OnExternalSigninCompleted(). Bug: 889902, 806778 Change-Id: I0ece2927c24506644a1087a7ed10df4578d592e3 Reviewed-on: https://chromium-review.googlesource.com/c/1335601 Commit-Queue: Sylvain Defresne <sdefresne@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#608735}
-