- 26 Apr, 2019 40 commits
-
-
Etienne Bergeron authored
We are observing in the field some cases where DWrite can't initialize properly. They are related to these versions: 6.1.7601 ????? 6.1.7600 ????? The GetSystemFontCollection method in the IDWriteFactory interface fails with E_INVALIDARG. This CL is adding a retry loop to see whether it's due to a latency to connect to the windows fonts service. Bug: 956064, 944227, 955031 Change-Id: I87c49fab384dbf849cb6faef6feee7b92c216507 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584429 Commit-Queue: Etienne Bergeron <etienneb@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Robert Liao <robliao@chromium.org> Cr-Commit-Position: refs/heads/master@{#654550}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/c6fbb279..457ad5c9 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,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I97eb2e5fefeebdc0b324b3f47754f07aa43b3868 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585815Reviewed-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@{#654549}
-
Yining Wang authored
AppMenuButton does not show the correct color in Focus Mode Window. To fix this, we add TabStripModelObserver to WebAppBrowserController class so that whenever we add/remove a tab, the WebContentsObserver is able to watch the content change, and the browser frame theme color could be consistent with the web contents' theme color. We also update the frame color when web_content is added to browser so that the AppMenuButton gets the right color. Change-Id: If0161a789e622b0cd3c655ca457b9d8be98611c1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1579463 Commit-Queue: Yining Wang <yiningwang@google.com> Reviewed-by:
Alan Cutter <alancutter@chromium.org> Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Reviewed-by:
Dana Fried <dfried@chromium.org> Reviewed-by:
Peter Boström <pbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#654548}
-
Eric Aleshire authored
This is part of EG1 to EG2 migration, which involves moving EarlGrey code from app-side helpers into test code. For GREYAsserts, the policy is to take assert- containing-helpers, modify them to return NSError* with localizedDescription containing the assert failure (in the event of a failure), and then assert on the result of the helper on the test side. I used a Python script to automatically find ChromeEarlGrey callsites in test code. Bug: 922813 Change-Id: I1fdf362e9a8691c1833d19990fe551e41056e858 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1578018 Commit-Queue: ericale <ericale@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#654547}
-
Andrew Xu authored
It is a regression issue. So it is necessary to have a test for this scenario. Test: ash_unittests Bug: 941428 Change-Id: I62e3b5e943f94fa143bc2629bca4c4cb15e3b3a2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585097Reviewed-by:
Jenny Zhang <jennyz@chromium.org> Commit-Queue: Andrew Xu <andrewxu@chromium.org> Cr-Commit-Position: refs/heads/master@{#654546}
-
Hui(Andy) Wu authored
Autofill assistant is crashing after being moved to DFM. The reason seems to be resources cannot be loaded without initialization before accessing the module. This CL try to initialize the activity properly. There is also another initialization after installation, without which a clean install of chrome would crash. This is like an issue from Play Core, and this CL tries to provide a walkaround. Bug: b/131149231 Change-Id: I4f3fba3d958105467bf0240bd06d0330f19ec921 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1582225 Commit-Queue: Hui Wu <wuandy@chromium.org> Reviewed-by:
Ganggui Tang <gogerald@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#654545}
-
Vladislav Kaznacheev authored
ShelfContextMenuModel holds a raw pointer to ShelfItemDelegate. If a delegate is deleted while a menu is being shown, selecting a menu item will cause use-after-free. A delegate might be deleted from 3 places: - when a shelf item is removed (this is already handled correctly) - when ShelfModel is destroyed on shutdown (does not seem to cause problems) - when a delegate is replaced on an existing shelf item (handled in this CL). Bug: 937507 Test: ShelfViewTest.ReplacingDelegateCancelsContextMenu Change-Id: Iac551bbab7b97a863941c89ea5a056ddf330a910 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585016 Commit-Queue: Vladislav Kaznacheev <kaznacheev@chromium.org> Auto-Submit: Vladislav Kaznacheev <kaznacheev@chromium.org> Reviewed-by:
Michael Wasserman <msw@chromium.org> Reviewed-by:
Yury Khmel <khmel@chromium.org> Cr-Commit-Position: refs/heads/master@{#654544}
-
Mohamed Heikal authored
Currently the download::Client API asks the client after the download has started and headers received about whether or not to continue the download. This feature is not widely used and is complicating migrating the API to become fully async. # trivial changes to the download clients TBR=peter@chromium.org,carlosk@chromium.org,aoldemeier@chromium.org Bug: 956246 Change-Id: I470422030e00053d91ea460283aaaf156eec7870 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1583101Reviewed-by:
Mohamed Heikal <mheikal@chromium.org> Reviewed-by:
David Trainor <dtrainor@chromium.org> Reviewed-by:
Peter Beverloo <peter@chromium.org> Reviewed-by:
Carlos Knippschild <carlosk@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Commit-Queue: Mohamed Heikal <mheikal@chromium.org> Cr-Commit-Position: refs/heads/master@{#654543}
-
Robbie Gibson authored
This CL moves constructing the WebLoadParams for search by image out into their own separate class. This will be used in an upcoming CL to immediately load the search-by-image search on startup from the search widget. Bug: 952939 Change-Id: I755dbd8190fe9d9cd08bbc9a4572afc9f2225a17 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1574058 Commit-Queue: Robbie Gibson <rkgibson@google.com> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Cr-Commit-Position: refs/heads/master@{#654542}
-
Sebastien Marchand authored
This implementation is only based on the amount of free memory and the disk idle time for now, more signals will be added later as needed. The signal isn't used yet, this only implement the logic to build it and a follow-up CL will put this behind a feature and add some histograms that will help evaluate the performance of this signal. Bug: 771478 Change-Id: Ic850c878482eb8637ec614490666f72e6146701c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1529267 Commit-Queue: Sébastien Marchand <sebmarchand@chromium.org> Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#654541}
-
Antonio Gomes authored
HeapListHashSet is deprecated in favor of HeapLinkedHashSet. HeapLinkedHashSet's invalidate iterators when the container is modified. It happens here that CoreProbeSink::Remove{{class_name}} (which calls HeapLinkedHashSet<{{class_name}}>::erase) can be called while iterating over probe_sink->{{class_name}}s(). Hence, a helper function was added in order to perform the copy. Note that having a helper function rather than the copy code inlined helps with binary size matters. R=jbroman@chromium.org CC=blink-reviews-vendor@chromium.org BUG=614112 Change-Id: I25692b867e0c32dc634b7d7f3a84877218082268 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584109Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#654540}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/c62691b671a9..199182fd64c7 git log c62691b671a9..199182fd64c7 --date=short --no-merges --format='%ad %ae %s' 2019-04-26 tandrii@chromium.org git_cache: on upload, run "git gc" only if necessary. Created with: gclient setdep -r src/third_party/depot_tools@199182fd64c7 The AutoRoll server is located here: https://autoroll.skia.org/r/depot-tools-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. BUG=chromium:943696 TBR=agable@chromium.org Change-Id: Idc08c5befaacb9188fb25be77508bdcec55454f4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1586096Reviewed-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@{#654539}
-
Liquan(Max) Gu authored
UserTiming is transistioning from L2 to L3. We want both the L2 and L3 features and code paths covered by web tests during the transition. So we setup virtual tests for L2 while enabling L3 as default in web tests. Bug: 957097 Change-Id: Ia0fdb898441ee61f11e1c4c7fc4f4d474c82b588 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584423Reviewed-by:
David Bokan <bokan@chromium.org> Reviewed-by:
Nicolás Peña Moreno <npm@chromium.org> Commit-Queue: Liquan (Max) Gu <maxlg@chromium.org> Cr-Commit-Position: refs/heads/master@{#654538}
-
Sebastien Marchand authored
Bug: 956581 Change-Id: I16332fa1dd9c9f9282fb894308c199652fcfb540 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584887Reviewed-by:
François Doray <fdoray@chromium.org> Reviewed-by:
oysteine <oysteine@chromium.org> Commit-Queue: Sébastien Marchand <sebmarchand@chromium.org> Cr-Commit-Position: refs/heads/master@{#654537}
-
Mehran Mahmoudi authored
This a new method to AppHooks for starting the system settings observer. Related downstream CL is included in the bug. Bug: 951850 Change-Id: If5f4f825a72a894dbe84c720403eba283c03e144 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584906 Commit-Queue: Mehran Mahmoudi <mahmoudi@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#654536}
-
Ryan Hansberry authored
UnlockManager used a confusing "waking up" notion throughout the class, which conflated device suspension and whether or not scanning was visibly in progress. This name has been improved to "initial scan" for readability. UnlockManager also incorrectly began this "initial scan" in its constructor. This makes no sense without its public method which begins a scan (SetRemoteDeviceLifeCycle) being called, and was unnecessary, so it has been removed. Finally, logs (mostly VERBOSE) have been added to help developers better understand device state when debugging feedback reports . Bug: 943761 Change-Id: Ia4d884e665aa5e49f6d421c45e65f699dacef786 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565780 Commit-Queue: Ryan Hansberry <hansberry@chromium.org> Reviewed-by:
Jeremy Klein <jlklein@chromium.org> Auto-Submit: Ryan Hansberry <hansberry@chromium.org> Cr-Commit-Position: refs/heads/master@{#654535}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/38526935062e..bdbb453061f8 Created with: gclient setdep -r src-internal@bdbb453061f8 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=andruud@chromium.org,alexmos@chromium.org,horo@chromium.org,adithyas@chromium.org Change-Id: I4d3dd31365bb969602bd54d0ca5a2bd6b19bab9c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585934Reviewed-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@{#654534}
-
Owen Min authored
This makes sure the update policy cache operation is always finished. This flag is used by other cloud policy store also: https://cs.chromium.org/chromium/src/chrome/browser/profiles/profile_impl.cc?type=cs&q=ProfileImpl+Traits&g=0&l=353 Change-Id: Ief21485c12b4a6b666aa8e7ecccb96e4e9540724 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1582769 Commit-Queue: Owen Min <zmin@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#654533}
-
ssid authored
This reverts commit 6a99e866. Reason for revert: Disabling test until deadlock is fixed. Original change's description: > Revert "Add browser test for perfetto file tracer" > > This reverts commit 6bb27973. > > Reason for revert: caused failure https://ci.chromium.org/p/chromium/builders/ci/Win10%20Tests%20x64/35197 > > Original change's description: > > Add browser test for perfetto file tracer > > > > Adds a browser test to perfetto file tracer in privacy mode. This > > currently just tests if the output proto only contains the whitelisted > > toplevel fields in TracePacket proto. It does not correctly verify the > > submessages. > > Adds a new library for checking privacy filtering in services/tracing. > > Currently this is marked test_only. But in future we might want to > > enable this in production on dcheck enabled builds. > > > > BUG=925148 > > > > Change-Id: Ib85e0e67ce9716cd839aeda2158ecf0dcfe9ea13 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1570235 > > Commit-Queue: ssid <ssid@chromium.org> > > Reviewed-by: oysteine <oysteine@chromium.org> > > Cr-Commit-Position: refs/heads/master@{#654379} > > TBR=oysteine@chromium.org,ssid@chromium.org > > Change-Id: Ie56f0f779f2aeaac0ae263efaf41722221778e76 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: 925148 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584269 > Reviewed-by: Anders Hartvoll Ruud <andruud@chromium.org> > Commit-Queue: Anders Hartvoll Ruud <andruud@chromium.org> > Cr-Commit-Position: refs/heads/master@{#654393} Bug: 925148 Change-Id: I2804941fdf9e30df6e776875a67181a3d9196779 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585967Reviewed-by:
oysteine <oysteine@chromium.org> Reviewed-by:
ssid <ssid@chromium.org> Commit-Queue: ssid <ssid@chromium.org> Cr-Commit-Position: refs/heads/master@{#654532}
-
chromium-autoroll authored
https://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools.git/+log/dca3ea5e1719..64faf6d9cb55 git log dca3ea5e1719..64faf6d9cb55 --date=short --no-merges --format='%ad %ae %s' 2019-04-26 stevenperron@google.com Fix undefined bit shift in sroa. (#2532) Created with: gclient setdep -r src/third_party/SPIRV-Tools/src@64faf6d9cb55 The AutoRoll server is located here: https://autoroll.skia.org/r/spirv-tools-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=dsinclair@chromium.org,geofflang@chromium.org Change-Id: If02612096ccefcf4c1ef2e7370274e185e4ffe36 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584853Reviewed-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@{#654531}
-
kylechar authored
Exo observes vsync parameter changes for the primary display and sends updates over the wayland protocol to arc++. This allows arc++ to produce frames at the correct rate and time. Currently exo adds an observer to CompositorVsyncManager. This works because vsync parameter updates are forwarded back from the GPU process to ui::Compositor without OOP-D. With OOP-D enabled the BeginFrameSource is moved into the GPU process. ui::Compositor is no longer involved in setting vsync parameters and CompositorVsyncManager no longer works. Add a new mojo interface that exo can subscribe to vsync parameter updates on. Move the logic to throttle sending vsync parameter updates out of exo and into the sending end of the mojo interface. This will limit the number of IPC messages. The throttling is improved slightly by handing modulus roll over when the timebase is near a multiple of the interval. The mojom::VSyncParameterObserver interface is implemented both with and without OOP-D. This removes the last usage of CompositorVsyncManager so we can delete it. Bug: 949711, 441577 Change-Id: I966b2d9dcc660efbdfb1c2800c71b6de3024e186 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1554834Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Reviewed-by:
Luke Halliwell <halliwell@chromium.org> Commit-Queue: kylechar <kylechar@chromium.org> Cr-Commit-Position: refs/heads/master@{#654530}
-
Yusuf Ozuysal authored
1) Set the size of the close button to be 18dp 2) Set the color of the close button to be modern grey 800 3) Set the padding to not clip the content for swipe to dismiss BUG=946288, 948752 Change-Id: Ieac2d75803109937d34cd3cbcd440849d8a8e456 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1583340 Commit-Queue: Yusuf Ozuysal <yusufo@chromium.org> Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Cr-Commit-Position: refs/heads/master@{#654529}
-
Ryan Hansberry authored
We plan to implement metrics which capture pairing success in pairing dialogs, and need to know the transport type of the pairing device at that moment, in order to understand if any transport type is more problematic than others. This CL exposes the transport type to the pairing dialogs. Bug: 953149 Change-Id: Iea54a04e9f1828e872c5ae6d5e1a072275a22582 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1582968Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Ryan Hansberry <hansberry@chromium.org> Cr-Commit-Position: refs/heads/master@{#654528}
-
Abdu Ameen authored
Currently on Desktop UI code there's a removal of blacklisted passwords before saving the updated form. Vasili suggested this should be moved to PasswordFormManager since this will be needed by iOS (and potentially Android). Bug: 952991 Change-Id: I026cb30ce37548107996b99b9f9726bc9bbcb856 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1570701 Commit-Queue: Vasilii Sukhanov <vasilii@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#654527}
-
Robbie Gibson authored
This also adds the infrastructure to color the divider using a Chrome- specific grey. Bug: 945323 Change-Id: I259c2c46446257525735e9ef04a07c1193df7a4a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1582058Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Reviewed-by:
Stepan Khapugin <stkhapugin@chromium.org> Commit-Queue: Robbie Gibson <rkgibson@google.com> Cr-Commit-Position: refs/heads/master@{#654526}
-
Kristi Park authored
If the experiment OmniboxUIExperimentShowPlaceholderWhenCaretShowing is enabled, do not hide the placeholder text in the fakebox on focus. Screenshot: https://screenshot.googleplex.com/3GYb3rE1btp.png Bug: 955585 Change-Id: If1a1b56b402c55f511af749da5a10ed0ef92812b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584941 Auto-Submit: Kristi Park <kristipark@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Commit-Queue: Kristi Park <kristipark@chromium.org> Cr-Commit-Position: refs/heads/master@{#654525}
-
Carlos Caballero authored
ScopedTaskEnvironment::ExecutionMode is becoming ScopedTaskEnvironment::ThreadPoolExecutionMode This CL was uploaded by git cl split. R=emircan@chromium.org Bug: 708584 Change-Id: I623b6a7ae0d359ea409285a045b7d2d0136af6db Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1583803 Auto-Submit: Carlos Caballero <carlscab@google.com> Reviewed-by:
Emircan Uysaler <emircan@chromium.org> Commit-Queue: Emircan Uysaler <emircan@chromium.org> Cr-Commit-Position: refs/heads/master@{#654524}
-
Lei Zhang authored
Avoid references for vector elements when the vector can change. BUG=956230 Change-Id: I9864ba6e176bd162965aae32c88de5e69a0d60f1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584934 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Cr-Commit-Position: refs/heads/master@{#654523}
-
Steven Bennetts authored
This CL removes all chromeos/network deps from ActiveNetworkIcon, using the cros_network-config mojo API instead. It also moves some utility code to chromeos/services/network_config/public/cpp for converting Shill types to Mojo types. Original CL: https://chromium-review.googlesource.com/c/chromium/src/+/1572364 This CL fixes a minor initialization error in NetworkIconState causing msan test failures. TBR=rockot@google.com, tsepez@chromium.org, jamescook@chromium.org, khorimoto@chromium.org Bug: 862420 Change-Id: Ibf9e63a7600cfee6eabaedfb08c8a16e40936f8c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585550Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Cr-Commit-Position: refs/heads/master@{#654522}
-
Mohsen Izadi authored
This CL updates some service manager initialization and manifests in tests that exercise multi-process mash so they can work with viz service when run in its own process. BUG=941657 Change-Id: I87cf7d10ad5decf629e7bb2e4ae681df49dc985f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1572271 Commit-Queue: Mohsen Izadi <mohsen@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#654521}
-
Bailey Berro authored
Currently, all printers are fetched for printing by the ArcPrintService. Since there is no way to setup Discovered printers in ARC, let's stop showing those printers. Change-Id: I993fb50fc0de4bc9f87cd26fb91f837fc4a1f851 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1579423 Commit-Queue: Bailey Berro <baileyberro@chromium.org> Reviewed-by:
Yusuke Sato <yusukes@chromium.org> Reviewed-by:
Sean Kau <skau@chromium.org> Auto-Submit: Bailey Berro <baileyberro@chromium.org> Cr-Commit-Position: refs/heads/master@{#654520}
-
Lucas Gadani authored
Change-Id: Id028aa988f4da5a8b08652a6b930e6cb83dab493 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585972 Auto-Submit: Lucas Gadani <lfg@chromium.org> Commit-Queue: Bruce Dawson <brucedawson@chromium.org> Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Cr-Commit-Position: refs/heads/master@{#654519}
-
Tatiana Buldina authored
Add 'data.text' contained alert text to kUnexpectedAlertOpen exception according to W3C Bug: chromedriver:2869 Change-Id: Id73d065241279d8c2f0699ca68556df382d585f7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584592 Commit-Queue: Tatiana Buldina <buldina@chromium.org> Reviewed-by:
John Chen <johnchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#654518}
-
Shimi Zhang authored
Follow up of http://crbug.com/955212. ChannelContainer and MessageObject were using raw lock to wait for call. We could use BlockingQueue to simplify them. Bug: 955212 Change-Id: I80a389cf7920fbbd6952a00aebea4cb665257051 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1582141 Commit-Queue: Shimi Zhang <ctzsm@chromium.org> Reviewed-by:
Changwan Ryu <changwan@chromium.org> Cr-Commit-Position: refs/heads/master@{#654517}
-
Marco Paniconi authored
https://chromium.googlesource.com/webm/libvpx.git/+log/da5be113f320..e50f4e4112a0 $ git log da5be113f..e50f4e411 --date=short --no-merges --format='%ad %ae %s' 2019-04-25 marpan vp9-rtc: Adjust thresh for 4x4 tx selection 2019-04-25 marpan vp9-rtc: Fix int conversion error in nonrd_pickmode. 2019-04-24 marpan vp9-rtc: Pass source variance and mode to select tx 2019-04-23 sdeng Revert "Add VPX_TUNE_SSIM and VPX_TUNE_PSNR enums" 2019-04-15 marpan vp9-rtc: tx_size selection for intra mode in nonrd 2019-04-12 sdeng Add VPX_TUNE_SSIM and VPX_TUNE_PSNR enums 2019-04-23 johannkoenig remove WIDE_REFERENCE definition 2019-04-23 johannkoenig remove ARCHITECTURE definition 2019-04-22 sdeng Add vpx_clear_system_state() in SSIM based rdmult adjustments 2019-04-19 harish.mahendrakar [vp9] Fix handling of skip in row_mt=1 (...) 2019-04-18 marpan vp9-rtc: Use correct plane for UV in estimate_intra 2019-04-18 marpan vp9-rtc: Move setting for use_model_rd_large 2019-01-22 deepa.kg Fix issues with bits allocated and consumed 2019-01-21 deepa.kg Refine interval for key frame boost calculation 2019-04-16 jzern Revert "Refactor tile boundary condition for intra prediction" 2019-04-16 jianj vp9: refactor condtions for model rd for large blocks. 2019-04-16 angiebird Refine vp9_kmeans() 2019-04-16 marpan vp9-rtc: Add speed feature to force SMOOTH filter 2019-04-16 yaowu Fix PSNRHVS computation 2019-04-12 jingning Use uniform sampling as initial centers for k-means Created with: roll-dep src/third_party/libvpx/source/libvpx R=johannkoenig@google.com Change-Id: I63182bd6cdabf38844539e66bcbba5db44714b16 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585963Reviewed-by:
Johann Koenig <johannkoenig@google.com> Commit-Queue: Marco Paniconi <marpan@google.com> Cr-Commit-Position: refs/heads/master@{#654516}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/64da4ae84db2..7804e8109a0a git log 64da4ae84db2..7804e8109a0a --date=short --no-merges --format='%ad %ae %s' 2019-04-26 brianosman@google.com Remove more trailing semi-colons Created with: gclient setdep -r src/third_party/swiftshader@7804e8109a0a The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=swiftshader-team+autoroll@chromium.org Change-Id: I14aa43279a8b26fdbae76967667232ef350700f6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584749Reviewed-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@{#654515}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/999374532cec..057f2dd516ce git log 999374532cec..057f2dd516ce --date=short --no-merges --format='%ad %ae %s' 2019-04-26 bhamrick@google.com Merge "Fix missed const -> constexpr in Fuchsia importer" Created with: gclient setdep -r src/third_party/perfetto@057f2dd516ce 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: I11c676f0660b57e7cf0d1b3472adf71062a13c2e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584758Reviewed-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@{#654514}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/d521ce39e99f..a30cf84b47a8 git log d521ce39e99f..a30cf84b47a8 --date=short --no-merges --format='%ad %ae %s' 2019-04-26 egdaniel@google.com Disable vulkan msaa on certain bots. 2019-04-26 mtklein@google.com Temporarily revert runtime decoder registration. 2019-04-26 egdaniel@google.com Fix legacy use of kKHR_swapchain_GrVkExtensionFlag when making GrVkGpu. Created with: gclient setdep -r src/third_party/skia@a30cf84b47a8 The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=mtklein@chromium.org Change-Id: I8d67ede862c7752f16ec61657dc64afbc7dd5540 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1584751Reviewed-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@{#654513}
-
Jarryd authored
Bug: 956281 Change-Id: I8c9d37334c79b237e672aa0e8014b534d49f7898 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585394 Commit-Queue: Jarryd Goodman <jarrydg@chromium.org> Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Auto-Submit: Jarryd Goodman <jarrydg@chromium.org> Reviewed-by:
Marijn Kruisselbrink <mek@chromium.org> Cr-Commit-Position: refs/heads/master@{#654512}
-
Aditya Keerthi authored
Change-Id: Ia168a878319bbbb94b9e28bd52bebb6b6347c447 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1585602 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#654511}
-