Robert Phillips
fe0963c350
Move "matches" from GrContextThreadSafeProxy to GrContext_Base
...
This makes the "matches" functionality available to all the context flavors and uses it for SkImages
Change-Id: I1e3d55f19a7752a9da8789e93a848b7a7a64d180
Reviewed-on: https://skia-review.googlesource.com/c/190227
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
2019-02-07 19:26:50 +00:00
Robert Phillips
e8345793c6
Make room for shifting GrContext to GrDirectContext
...
Change-Id: I6291b0c513c641c3bb49260031b501da42b11ede
Reviewed-on: https://skia-review.googlesource.com/c/190002
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
2019-02-07 19:24:07 +00:00
recipe-roller
43b6225658
Roll recipe dependencies (trivial).
...
This is an automated CL created by the recipe roller. This CL rolls recipe
changes from upstream projects (e.g. depot_tools) into downstream projects
(e.g. tools/build).
More info is at https://goo.gl/zkKdpD . Use https://goo.gl/noib3a to file a bug.
recipe_engine:
https://crrev.com/7b5a41699c38fb8a53b125a31a90f9f84aef17eb [swarming] Fix duration bug (joshuaseaton@google.com )
TBR=borenet@google.com
Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: I71aceda5c2307e4ede9dba538abd9ed62d5784e1
Reviewed-on: https://skia-review.googlesource.com/c/190301
Reviewed-by: Recipe Roller <recipe-roller@chromium.org>
Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
2019-02-07 19:21:46 +00:00
Brian Osman
0471a93057
Support building mips when creating cross context images
...
The API existed, but triggered asserts if you tried to use it
(because we weren't passing scaleAdjust). Also guard against
devices not supporting mips, and update the GM to test all of
these cases (including mipping a cross-context image that was
originally created without mips).
Bug: https://github.com/flutter/flutter/issues/24517
Change-Id: Ia180f4e6fd7f3790d0f7068f9f3aa39eb5657378
Reviewed-on: https://skia-review.googlesource.com/c/190224
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
2019-02-07 19:17:55 +00:00
Brian Salomon
a29dd9d0cb
Pin the quad index buffer in GrResourceProvider.
...
This can get purged under memory pressure, but it is highly unlikely that
it will not be quickly recreated. It is only 32K.
Change-Id: Ia1fd404d8a57968aa26ff24f5a407e79fb78cc74
Reviewed-on: https://skia-review.googlesource.com/c/190260
Commit-Queue: Brian Salomon <bsalomon@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Auto-Submit: Brian Salomon <bsalomon@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2019-02-07 19:04:25 +00:00
Mike Reed
8619a34bb8
Revert "Hide setDrawLooper -- deprecate loopers"
...
This reverts commit c877ea2657
.
Reason for revert: wow, this is going to be really hard to update callers
Original change's description:
> Hide setDrawLooper -- deprecate loopers
>
> Guarded with SK_SUPPORT_LEGACY_DRAWLOOPER
>
> Bug: skia:4783
> Change-Id: I4a47513624bc5c09816f44e107917dc8028adb94
> Reviewed-on: https://skia-review.googlesource.com/c/189871
> Reviewed-by: Mike Reed <reed@google.com>
> Commit-Queue: Mike Reed <reed@google.com>
> Auto-Submit: Mike Reed <reed@google.com>
TBR=reed@google.com
Change-Id: Ia49f421c8a96a8091ab87533361fde4bf570d6e4
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: skia:4783
Reviewed-on: https://skia-review.googlesource.com/c/190303
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
2019-02-07 19:00:36 +00:00
recipe-roller
2c27b65438
Roll recipe dependencies (trivial).
...
This is an automated CL created by the recipe roller. This CL rolls recipe
changes from upstream projects (e.g. depot_tools) into downstream projects
(e.g. tools/build).
More info is at https://goo.gl/zkKdpD . Use https://goo.gl/noib3a to file a bug.
recipe_engine:
https://crrev.com/1cfbbd6688934edac32840957690407a36eb153f [swarming] Fix bugs once and for all! (joshuaseaton@google.com )
TBR=borenet@google.com
Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: I4ea992e4c1358c96025f2f2773cb3729fdd54678
Reviewed-on: https://skia-review.googlesource.com/c/190226
Reviewed-by: Recipe Roller <recipe-roller@chromium.org>
Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
2019-02-07 18:41:45 +00:00
Brian Osman
a8b04eea3a
Remove duplicate entry in harfbuzz GN file
...
Bug: skia:
Change-Id: Ia2913ceb3ecaa88fb43b2143f8ba89b86d0f7173
Reviewed-on: https://skia-review.googlesource.com/c/190225
Commit-Queue: Brian Osman <brianosman@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
Auto-Submit: Brian Osman <brianosman@google.com>
Reviewed-by: Ben Wagner <bungeman@google.com>
2019-02-07 18:33:45 +00:00
Brian Salomon
dbf7072a59
Use different classes for client side arrays and GPU buffer objects.
...
GrBuffer is a base class for GrGpuBuffer and GrCpuBuffer. GrGpuBuffer is a
GrGpuResource and the others are not. This allows GrCpuBuffers to exist
outside of the GrGpuResourceCache.
Also removes flags from GrResourceProvider buffer factory function. The
only flag still in use was kRequireGpuMemory. Now CPU buffers are made
without using GrResourceProvider.
Change-Id: I82670d1316e28fd6331ca36b26c8c4ead33846f9
Reviewed-on: https://skia-review.googlesource.com/c/188823
Commit-Queue: Brian Salomon <bsalomon@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
2019-02-07 18:04:15 +00:00
Adam Barth
f4766758aa
[fuchsia] Update path to fuchsia.fonts
...
This interface is now defined in the //sdk directory.
Change-Id: Idfa7208a2d5aa36e3268e84b44ec5b4f47da6dde
Reviewed-on: https://skia-review.googlesource.com/c/190145
Auto-Submit: Adam Barth <abarth@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2019-02-07 17:49:45 +00:00
Robert Phillips
c1bee13e13
Add support for Mtl backend to DeferredDisplayListTest
...
Change-Id: Ie576bc8442e5a646c33191100be1be5f89d72290
Reviewed-on: https://skia-review.googlesource.com/c/189483
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
2019-02-07 16:34:50 +00:00
Florin Malita
500133b1e2
[skshaper] Add per-line callback
...
Bug: skia:
Change-Id: Iaaf7e95230207bc796dd436a918722a089426e34
Reviewed-on: https://skia-review.googlesource.com/c/190220
Commit-Queue: Ben Wagner <bungeman@google.com>
Reviewed-by: Ben Wagner <bungeman@google.com>
2019-02-07 16:30:00 +00:00
Jim Van Verth
3d482995e5
Set correct uniform size for Metal.
...
There are two fixes here. The first pads out the uniform buffer to
match the alignment of the largest element in the buffer, as required
by Metal. The second ensures that the RTHeight uniform is only added
to the shader if required by the program inputs, as otherwise it wasn't
being included in the uniform data.
Bug: skia:8737
Change-Id: Icbe57456f3ec79faada231278c58137ca9865dd2
Reviewed-on: https://skia-review.googlesource.com/c/189875
Commit-Queue: Jim Van Verth <jvanverth@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-02-07 16:17:24 +00:00
Florin Malita
3fb7bbe937
[skottie] Use SkShaper for text
...
Update the text adapter to shape using SkShaper.
Bug: skia:
Change-Id: Ie6ea579a1f58b2f6ba6101dcdfad8ae9809de808
Reviewed-on: https://skia-review.googlesource.com/c/183387
Commit-Queue: Florin Malita <fmalita@chromium.org>
Reviewed-by: Mike Reed <reed@google.com>
2019-02-07 15:32:20 +00:00
Mike Klein
4d907dac76
move Reporter::reportFailedWithContext() out of line
...
I happened to be disassembling a test object file and noticed
that this was emitted in every test object file.
Change-Id: I1d09f5bb80d9f8a5530dc9f81a2dd95872e34a10
Reviewed-on: https://skia-review.googlesource.com/c/190202
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Mike Klein <mtklein@google.com>
2019-02-07 15:18:20 +00:00
Ben Wagner
9564bf44e5
Upgrade NVIDIA driver on Ubuntu18 QuadroP400 bots.
...
Remove Test-Ubuntu18-Clang-Golo-GPU-QuadroP400-x86_64-(Debug|Release)
-All-DDL3_ASAN_Vulkan jobs because they fail with an unidentifiable
memory leak in the NVIDIA driver. These were replaced with Intel jobs
in https://skia-review.googlesource.com/c/skia/+/184071 .
Bug: skia:8709
Change-Id: I0c849537e65402a472e674193b0652b80263289c
Reviewed-on: https://skia-review.googlesource.com/c/182262
Commit-Queue: Kevin Lubick <kjlubick@google.com>
Auto-Submit: Ben Wagner <benjaminwagner@google.com>
Reviewed-by: Kevin Lubick <kjlubick@google.com>
2019-02-07 15:08:21 +00:00
Greg Daniel
173464da34
Add support for importing AHardwareBuffers into SkSurfaces.
...
Bug: skia:
Change-Id: I0a3b3d607e1b74787480b03520a07839c87486dc
Reviewed-on: https://skia-review.googlesource.com/c/189980
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
2019-02-07 15:03:50 +00:00
Leon Scroggins III
699d41e4bd
SkWuffsCodec: Initialize memory when incomplete
...
Bug: oss-fuzz:11800
We already had code that initialized the output memory, but it assumed
that we would later copy from wuffs' work buffer. If the dirty rect is
empty, we don't do that. Rearrange the wuffs decode so we can know that
the dirty rect is empty when we decide whether to initialize.
Change-Id: I45fdd4270906b4c240ec087d20c24fb107a1dc07
Reviewed-on: https://skia-review.googlesource.com/c/189866
Commit-Queue: Leon Scroggins <scroggo@google.com>
Reviewed-by: Nigel Tao <nigeltao@google.com>
2019-02-07 14:48:31 +00:00
Kevin Lubick
9590f86e89
Add a k8s cheat sheet to trooper docs
...
No-Try: true
Docs-Preview: https://skia.org/?cl=190201
Bug: skia:
Change-Id: Idd7d1838a648e1e73d76720dc07bd425ff7929a3
Reviewed-on: https://skia-review.googlesource.com/c/190201
Reviewed-by: Joe Gregorio <jcgregorio@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
2019-02-07 14:46:50 +00:00
Mike Reed
c877ea2657
Hide setDrawLooper -- deprecate loopers
...
Guarded with SK_SUPPORT_LEGACY_DRAWLOOPER
Bug: skia:4783
Change-Id: I4a47513624bc5c09816f44e107917dc8028adb94
Reviewed-on: https://skia-review.googlesource.com/c/189871
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
Auto-Submit: Mike Reed <reed@google.com>
2019-02-07 13:33:30 +00:00
skia-autoroll
c19d81acc0
Roll ../src c27b32b2fd52..635f11205d4b (414 commits)
...
c27b32b2fd..635f11205d
git log c27b32b2fd52..635f11205d4b --date=short --no-merges --format='%ad %ae %s'
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll Fuchsia SDK from 0b6ae643b2e5 to e80b59856124
2019-02-07 droger@chromium.org [signin] Remove OnStartBatchChanges
2019-02-07 toyoshim@chromium.org Factor out IsGoogleDomain to google_util::IsGoogleRelevantUrl
2019-02-07 dullweber@chromium.org Support filtered deletions in browsingData.remove() api
2019-02-07 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 8200b1f0ea55..b68e715cb291 (3 commits)
2019-02-07 mharanczyk@opera.com Fix memory leak in ChooserContextBase::GetGrantedObjects.
2019-02-07 pmarko@chromium.org Rename kPinnedAppsPrefAppIDPath to kPinnedAppsPrefAppIDKey
2019-02-07 msw@chromium.org Fix the system tray bubble placement.
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia f36ad269e88a..859db6b5a03c (1 commits)
2019-02-07 pnoland@chromium.org [Chromeshine] Ignore incognito tabs
2019-02-07 acourbot@chromium.org media/gpu/v4l2ip: use thread checker for device thread
2019-02-07 findit-for-me@appspot.gserviceaccount.com Revert "Disable shadow and mask while rotating in tablet mode"
2019-02-07 jkim@igalia.com [s13n] Use kWaitUntilRefreshTokenAvailable mode for ProfileDownloader
2019-02-07 lucmult@chromium.org [Files app] Convert file_selection.js to es6 classes
2019-02-07 yosin@chromium.org Import test cases to FindBufferTest from SearchBufferTest
2019-02-07 yosin@chromium.org Introduce blink/perf_tests/paint/select-all-words.html
2019-02-07 droger@chromium.org [signin] Remove unused ChromeOS signin code
2019-02-07 lucmult@chromium.org [Files app] Convert file_selection.js to arrow function
2019-02-07 futhark@chromium.org Don't call DetachLayoutTree synchronously for slotting.
2019-02-07 v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update V8 to version 7.4.100.
2019-02-07 ganenkokb@yandex-team.ru Fix crash on navigate with service worker script loaded from cache
2019-02-07 falken@chromium.org service worker: Add instrumentation to debug bad resource type crash.
2019-02-07 eseckler@chromium.org perfetto: Reset event sink between sessions on non-flushing threads.
2019-02-07 yosin@chromium.org Utilize NodeTraversal::InclusiveAncestorsOf() in EnclosingElementWithTag()
2019-02-07 gyuyoung@igalia.com Remove PauseScheduledTasks() in content layer
2019-02-07 lucmult@chromium.org [Files app] Convert file_selection.js to const/let
2019-02-07 dmazzoni@chromium.org Fix bottleneck in computing win accessibility attributes
2019-02-07 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal f4d325bdd8b0..8200b1f0ea55 (3 commits)
2019-02-07 findit-for-me@appspot.gserviceaccount.com Revert "Add quick view test for removable partitions."
2019-02-07 peria@chromium.org IDL Compiler: Support Exposed with OriginTrialEnabled
2019-02-07 rakina@chromium.org Make TextSearcherICU skip results with zero length
2019-02-07 alliemurray@google.com Test how partitions are displayed as children of their root label.
2019-02-07 rbpotter@chromium.org Print Preview: Add a type for all CustomEvent parameters
2019-02-07 falken@chromium.org service worker: Simplify ServiceWorkerVersion destructor.
2019-02-07 mmoss@chromium.org Pin the new external/Webkit repo.
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/dawn 96e1911b0bad..01a3e9b6383f (1 commits)
2019-02-07 calamity@chromium.org Revert "[Extensions] Separate activity log into multiple files"
2019-02-07 sreerenj.balachandran@intel.com gpu/vp8_reference_frame_vector: clean up the header file inclusion
2019-02-07 sreerenj.balachandran@intel.com vaapi/vp8_encoder: optimize with constexpr usage
2019-02-07 rakina@chromium.org Fix infinite-loop in FindRequestManager::Traverse
2019-02-07 v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update V8 to version 7.4.99.
2019-02-07 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 1b32378da8f4..f4d325bdd8b0 (1 commits)
2019-02-07 mmenke@chromium.org Socket Pools Refactor 23: Let SpdySession take a StreamSocket.
2019-02-07 vtsyrklevich@chromium.org Add GWP-ASan hook to macOS crashpad handler
2019-02-07 oshima@chromium.org Disable shadow and mask while rotating in tablet mode
2019-02-07 piman@chromium.org Track eglMakeCurrent failure in GLContextEGL::ReleaseCurrent
2019-02-07 tommycli@chromium.org Click to Open PDF: Improve first-time IFRAME throttle behavior
2019-02-07 szager@chromium.org Dismantle obsolete debugging machinery
2019-02-07 nigeltao@chromium.org Rename some apps utility functions' namespace
2019-02-07 alph@chromium.org DevTools: Show warnings for long tasks on performance timeline.
2019-02-07 malaykeshav@chromium.org Propagate layer visibility changes to mirrors
2019-02-07 chrome-release-bot@chromium.org Updating trunk VERSION from 3696.0 to 3697.0
2019-02-07 alliemurray@google.com Add quick view test for removable partitions.
2019-02-07 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 96982ab4da6c..1b32378da8f4 (10 commits)
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia c1a2ea33a340..f36ad269e88a (3 commits)
2019-02-07 mek@chromium.org [AppCache] Treat non-200 2xx responses for manifests as SERVER_ERROR.
2019-02-07 adanilo@chromium.org Fix sizes of share and delete SVG icons
2019-02-07 alliemurray@google.com Add command to unmount a removable entry list.
2019-02-07 sky@chromium.org chromeos: makes changes to can activate go to server
2019-02-07 oysteine@chromium.org Tracing: Lower priority of TracedProcess interface bind requests
2019-02-07 dbeam@chromium.org WebUI Dark Mode: update simple welcome page
2019-02-07 thestig@chromium.org Set the duplex and tumble bits in the PWG header.
2019-02-07 alliemurray@google.com Partition grouping in navigation list model.
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/angle f9cc785c3f6a..603ad164a6fc (1 commits)
2019-02-07 luoe@chromium.org DevTools: add KaiOS phone preset
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/pdfium 1b8d2cc9056a..82105494f27a (26 commits)
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/depot_tools 61d0c292535e..06d1040fab75 (1 commits)
2019-02-07 wzang@chromium.org cros: Add maybelle@ to wallpaper owners
2019-02-07 kenrb@chromium.org Revert "Add metrics for Bluetooth adapter availability"
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/catapult 11e283fea253..38769c1f96a3 (1 commits)
2019-02-07 waffles@chromium.org Revert "[Android] Remove accounts and sign-in information from Omaha requests"
2019-02-07 masonfreed@chromium.org Adding tests for scrolling bugs found in BGPT mode
2019-02-07 khushalsagar@chromium.org gpu/android : Add support for partial swap with surface control.
2019-02-07 sky@chromium.org disables CrSettingsSiteListTest.SiteList as it's flaky
2019-02-07 jimmyxgong@google.com Add RequestUpdatedSharePath to SmbFileSystem
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll Fuchsia SDK from c0913f45105e to 0b6ae643b2e5
2019-02-07 kelvinjiang@chromium.org [Extensions] Separate activity log into multiple files
2019-02-07 hcarmona@chromium.org [Reland] Extensions: Focus correct button on options dialog close.
2019-02-07 acourbot@chromium.org media/gpu/v4l2ip: convert client thread checker to sequence checker
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/perfetto 82f670fd3d37..2af003349292 (2 commits)
2019-02-07 juncai@chromium.org Revert "Reland: Network Service: Use histograms instead of chartjsons for network service performance tests"
2019-02-07 enga@chromium.org Remove failing Android test expectations for WebGL2 video textures
2019-02-07 tkent@chromium.org XMLSerializer: Fix conflict between a generated ns* prefix and existing xmlns:ns*.
2019-02-07 robsc@chromium.org Add result_type kPlayStoreReinstallApp and use to improve Reinstall UX.
2019-02-07 ceciliani@google.com [App Management] Fix routing from notification view to permission view.
2019-02-07 sky@chromium.org views: Makes WidgetDelegate::set_can_activate call to Widget
2019-02-07 mattreynolds@google.com Fix integer overflow in HID report descriptor parser
2019-02-07 rohitrao@chromium.org [ios] Fixes the repo URL for ios/third_party/webkit/src.
2019-02-07 etiennep@chromium.org [TaskScheduler]: Migrate off of AssertBlockingAllowedDeprecated in /sql
2019-02-07 masonfreed@chromium.org Fix BGPT backdrop-filter with opacity<1 parent
2019-02-07 huangdarwin@chromium.org Refactor: os_exchange_data_provider_win.cc use range-based for loops
2019-02-07 stevenjb@chromium.org Move multi icon logic to ActiveNetworkIcon
2019-02-07 ceciliani@google.com [App Management] Replace == to === in JavaScript.
2019-02-07 amusbach@chromium.org tablet: Fix behavior after docked mode in user-enforced tablet mode.
2019-02-07 kainino@chromium.org Tighten suppressions of tricky-loop-conditions.html
2019-02-07 nigeltao@chromium.org Don't hard-code app icons to SCALE_FACTOR_100P
2019-02-07 emaxx@chromium.org Identify extension messaging source via enum
2019-02-07 wylieb@chromium.org [Feed] Disable read cache for LevelDB usages
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/dawn 7771f58c7f24..96e1911b0bad (1 commits)
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/webrtc e98954c35e97..7ca375c8ca54 (1 commits)
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/angle 740db7fd2795..f9cc785c3f6a (3 commits)
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia 98385ba6c5c6..c1a2ea33a340 (14 commits)
2019-02-07 dtapuska@chromium.org Add support for freezing iframes
2019-02-07 wjmaclean@chromium.org Update comment re GetTouchSelectionControllerClientManager().
2019-02-07 skyostil@chromium.org gpu: Fix race when establishing GPU channel
2019-02-07 rkjnsn@chromium.org Add Mac file chooser dialog.
2019-02-07 gayane@chromium.org Propagate the toolbar color to related elements regardless if toolbar
2019-02-07 reillyg@chromium.org Enable WebUSB on extension URLs
2019-02-07 minch@google.com Remove overview icon animation on dragging window from top.
2019-02-07 skym@chromium.org [Feed] Emit duration that does not include token fetch.
2019-02-07 annelim@google.com [Autofill] Reland Add StrikeDatabase browsertests
2019-02-07 jimmyxgong@google.com Inject RequestUpdatedSharePathCallback to SmbFileSystem
2019-02-07 thestig@chromium.org Modernize for-loops in PluginList.
2019-02-07 nigeltao@chromium.org Add an is_platform_app bit to the App Service
2019-02-07 googleo@chromium.org Set delegate handlers for IME extension.
2019-02-07 afakhry@chromium.org Night Light: Better handling of lack of valid geopositions
2019-02-07 justincohen@google.com [ios] Prevent taps in the NTP if the underlying NTP hasn't committed.
2019-02-07 mukai@chromium.org Implement surrounding text API for exo::TextInput
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/chromite 971e4cb2b43d..f0a00cd7f17b (6 commits)
2019-02-07 gbeaty@chromium.org Add an mb configuration for a Win32 ARM64 builder.
2019-02-07 akhouderchah@google.com chromeos: metrics: Distinguish no failure from unknown failure
2019-02-07 stevenjb@chromium.org Add ash::ActiveNetworkIcon to track the active network icon state
2019-02-07 dgozman@chromium.org Preload mhtml document before committing a navigation
2019-02-07 zhongyi@chromium.org Change the verbose mode for flags in quic_flag_utils_impl.h.
2019-02-07 zmo@chromium.org Remove two outdated bits from GpuPreferences
2019-02-07 takumif@chromium.org Label sub-sample-buffer-stitching.html as failing
2019-02-07 cduvall@chromium.org Revert "Fix webRequest issues with redirects and extraHeaders listeners"
2019-02-07 mcnee@chromium.org Re-enable the ReportBubblingScrollToSameView DumpWithoutCrashing
2019-02-07 alancutter@chromium.org Dedupe ShouldPaintAsThemed() with BrowserFrame::ShouldUseTheme()
2019-02-07 jazzhsu@chromium.org [CrOS Video Player] Enable native controls by default
2019-02-07 thestig@chromium.org Use base::RepeatingCallback in PluginList.
2019-02-07 wez@chromium.org [Fuchsia] Migrate call-sites to ServiceDirectoryClient.
2019-02-07 kyleju@chromium.org Enable WPT WebDriver Test Runner to run on Chromium CQ.
2019-02-07 alph@chromium.org DevTools: Reenable tracing-based JS profile.
2019-02-07 karandeepb@chromium.org DNR: Use rule id for install warnings whenever possible.
2019-02-07 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/perfetto 10ef8b33f128..82f670fd3d37 (1 commits)
2019-02-07 karandeepb@chromium.org DNR: Improve install warnings.
2019-02-06 jamiewalch@chromium.org Update start_host to point to new remotedesktop.google.com/headless.
2019-02-06 chaopeng@chromium.org Add logs to help debug touchpad stops working issue.
2019-02-06 dalecurtis@chromium.org Try enabling dav1d again now that bugs are fixed.
2019-02-06 akihiroota@chromium.org Plumb font family and font size through to AutomationNode.
2019-02-06 noel@chromium.org [image_decode_bench] Use std::chrono::steady_clock
2019-02-06 kpaulhamus@chromium.org Postmortem states should not return errors until after user action.
2019-02-06 sunnyps@chromium.org Reland "Enable decode swap chain feature on waterfall"
2019-02-06 brucedawson@chromium.org Ship ucrtbase.dll in debug isolates
2019-02-06 ginko@google.com cros: Improves handling of arrows with search box autocomplete
2019-02-06 emircan@chromium.org Add audio capture to WebRtcGetDisplayMediaBrowserTest
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/SPIRV-Tools/src 117a1fd11f11..9b6ba4d1c57e (1 commits)
2019-02-06 khachatryan@chromium.org [ChromeDriver] Enable window maximize tests on Mac
2019-02-06 bsazonov@chromium.org [Unity][Android] Fix margins in signin_view
2019-02-06 mcasas@chromium.org VaVDA: split kReduced and kSuperReduced modes
2019-02-06 mmenke@chromium.org Disable network diagnostics link in incognito and guest mode on Windows.
2019-02-06 buldina@chromium.org [ChromeDriver] Disable releasing ChromeDriver from waterfall
2019-02-06 tguilbert@chromium.org Cleanup MediaPlayerBridge
2019-02-06 wjmaclean@chromium.org Add bug number to comment.
2019-02-06 reillyg@chromium.org [serial] Don't build //content/browser/serial on Android
2019-02-06 justincohen@google.com [ios] Don't load external URLs on the NTP if the NTP hasn't committed.
2019-02-06 jkunkee@microsoft.com Add Windows support to build/symlink.py
2019-02-06 sdefresne@chromium.org Remove uses of deprecated RegisterListPref
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal e5029b0b32bb..96982ab4da6c (2 commits)
2019-02-06 smaier@chromium.org Not creating a main dex list on L+
2019-02-06 v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update V8 to version 7.4.98.
2019-02-06 dewittj@chromium.org [EoS] Fix background task scheduling
2019-02-06 buldina@chromium.org [ChromeDriver] Move logging to avoid creating additional log file
2019-02-06 buldina@chromium.org [ChromeDriver] Add tests from chromedriver_tests to chromedriver_unittests
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/catapult eeb21ab0411e..11e283fea253 (2 commits)
2019-02-06 jazzhsu@chromium.org [Media Controls] Fix volume slider jumping back and forth
2019-02-06 sdefresne@chromium.org Remove uses of deprecated RegisterDictionaryPref
2019-02-06 npm@chromium.org [LayoutJank] Add UseCounter and buffering behavior
2019-02-06 juncai@chromium.org Reland: Network Service: Use histograms instead of chartjsons for network service performance tests
2019-02-06 thestig@chromium.org Move PluginList to content/browser/.
2019-02-06 lfg@chromium.org Remove dead code.
2019-02-06 sky@chromium.org chromeos: really disables ContentResizeInAutoResizingDialog test
2019-02-06 haining@google.com Removes trailing comma in json object
2019-02-06 takumif@chromium.org Label RTCPeerConnection-track-stats.https.html test as failing
2019-02-06 thakis@chromium.org Remove a file that only includes a different cc file.
2019-02-06 jimmyxgong@google.com Add RequestUpdatedSharePathCallback to SmbProvider
2019-02-06 haining@google.com Adds missing `var` in for-loop for strict mode
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/chromite bac45cb2d283..971e4cb2b43d (2 commits)
2019-02-06 npm@chromium.org Fix suppportedEntryTypes and PaintTiming IDLHarness tests
2019-02-06 takumif@chromium.org Disable CrSettingsMainPageTest.MainPage on Linux
2019-02-06 fmalita@chromium.org Remove SkMetadata
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/SPIRV-Tools/src 0f4bf0720a9c..117a1fd11f11 (1 commits)
2019-02-06 jkunkee@microsoft.com [imagediff] Add '.exe' suffix to symlink target
2019-02-06 marcin@mwiacek.com Migrate VariationsPlatform to @IntDef
2019-02-06 karandeepb@chromium.org Extensions: Support generating error messages for idl files.
2019-02-06 oysteine@chromium.org Tracing: Move the tracing service in-process again to figure out test flakes
2019-02-06 rockot@chromium.org Flatten Service Manager directory structure moar
2019-02-06 mlamouri@chromium.org Media Capabilities: move MSE checks to Blink.
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/angle eb47e2c4bd08..740db7fd2795 (1 commits)
2019-02-06 tedchoc@chromium.org Fix BluetoothChooserDialogTest#testSelectItem in landscape
2019-02-06 reed@google.com add flag to stage removing drawloopers
2019-02-06 stevenjb@chromium.org Add NetworkStateHandler::SetNetworkChromePortalDetected
2019-02-06 liaoyuke@chromium.org [code coverage] Add additional env vars for coverage cq trybot
2019-02-06 gab@chromium.org [Threading and Tasks] Add Nomenclature section to docs
2019-02-06 lukasza@chromium.org Enable CORB in AppCacheUpdateJob::UpdateURLLoaderRequest::Start.
2019-02-06 xiaohuic@google.com assistant: remove enable hotword libassistant config
2019-02-06 robertogden@chromium.org Add about flag for Data Saver rebranding
2019-02-06 agrieve@chromium.org Teach resource_sizes.py about .minimal.apks files
2019-02-06 rbpotter@chromium.org Print Preview: Fix double sign in issues
2019-02-06 sdefresne@chromium.org Remove uses of deprecated RegisterListPref
2019-02-06 vtsyrklevich@chromium.org Use buildflags/gn arg to enable GWP-ASan
2019-02-06 nasko@chromium.org Rewrite ClientRedirectAfterSameDocumentNavigation test.
2019-02-06 tangltom@chromium.org [unified-consent] Remove spellcheck, SBER from opt-in dialog
2019-02-06 raphael.kubo.da.costa@intel.com SequenceBound: Move NO_SANITIZE annotation to fix GCC build
2019-02-06 mmenke@chromium.org Disable NetworkContextConfigurationBrowserTests on ChromeOS
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/catapult 4e2870c4be46..eeb21ab0411e (1 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/depot_tools a2d5f7847748..61d0c292535e (1 commits)
2019-02-06 akihiroota@chromium.org Create LanguageSwitching function for ChromeVox.
2019-02-06 wez@chromium.org [Fuchsia] Clean up ScopedServiceBinding to use typed handles.
2019-02-06 jdufault@chromium.org Reland "cros: Simplify how views/screens are mocked in WizardControllerBrowsertest"
2019-02-06 vtsyrklevich@chromium.org Reland "Refactor crashpad_handler binary on macOS"
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 8af58ce7557c..e5029b0b32bb (4 commits)
2019-02-06 pkasting@chromium.org Combine AppMenuObserver and MenuListener into AppMenuButtonObserver.
2019-02-06 chrisha@chromium.org Remove InfiniteSessionRestore feature.
2019-02-06 mlippautz@chromium.org LocalWindowProxy: Annotate strong handle with label
2019-02-06 bbudge@chromium.org [WebAssembly] Start a field trial for Wasm compiled code caching
2019-02-06 alexclarke@chromium.org Remove redundant MessageLoop from audio_apitest.cc
2019-02-06 harringtond@chromium.org Update code to use new RequestCoordinator::RemoveRequestsIf()
2019-02-06 fdegans@chromium.org [Fuchsia] Move NamedMessagePortConnector to //fuchsia/runners/cast
2019-02-06 alph@chromium.org DevTools: Show FirstPaint metric in performance recordings
2019-02-06 nicolaso@chromium.org [BrowserSwitcher] Add KeepLastChromeTab policy
2019-02-06 dlibby@microsoft.com Use absolute value for intermediate AverageLag values
2019-02-06 adityakeerthi@google.com Do not purge memory on foregrounded renderers when freezing
2019-02-06 raul@tambre.ee //media: Convert base::(U)Int(64)ToString(16) to NumberToString(16)
2019-02-06 agrieve@chromium.org Android: Stop measuring static initializers in resource_sizes.py
2019-02-06 v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update V8 to version 7.4.94.
2019-02-06 rtoy@chromium.org Use oversampling to compute frame number
2019-02-06 sebsg@chromium.org [Sheriff] Update expectations for ext/wpt/h/d/interfaces.worker.html
2019-02-06 jimmyxgong@google.com Add UpdateSharePath to SmbProviderClient
2019-02-06 marcin@mwiacek.com Implement isInTestingMode (migration to CompositorAnimator, part 2)
2019-02-06 fayang@chromium.org Allow SendMessage callers to decide whether to copy or move message data, depends on whether the passed down MemSlices are reference-counted or copy-on-demand.
2019-02-06 wylieb@chromium.org [Image Fetcher] Parameterize image fetcher customization
2019-02-06 penghuang@chromium.org Add a new mode to allow running SkiaRenderer+WebView without DDL
2019-02-06 tguilbert@chromium.org Delete MediaPlayerAndroid
2019-02-06 jennyz@chromium.org Revert "Disable zero state by default."
2019-02-06 uwyiming@google.com Remove the 'mac-views-rel' bot.
2019-02-06 jkrcal@chromium.org Revert "[SyncUSSAutofillWalletData] Disable the feature by default"
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll Fuchsia SDK from 85d0c6cd8b3c to c0913f45105e
2019-02-06 mukai@chromium.org Add property name to the DVLOG of window_tree
2019-02-06 dbeam@chromium.org WebUI Dark Mode: fix some accidentally black text
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/chromite 5a11aef19b02..bac45cb2d283 (1 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/perfetto 26c6e4845dc1..10ef8b33f128 (3 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/webrtc 4092d6fb052b..e98954c35e97 (4 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/dawn 978fa65a2cc5..7771f58c7f24 (1 commits)
2019-02-06 nasko@chromium.org Add CanAccessDataForOrigin check to RenderFrameHostImpl::CanCommitURL
2019-02-06 smcgruer@chromium.org Promote prefers-reduced-motion to stable
2019-02-06 vtsyrklevich@chromium.org Revert "GWP-ASan: Print stack traces when is_debug=true"
2019-02-06 boliu@chromium.org Always mangle Surface jni
2019-02-06 sky@chromium.org chromeos: disables ContentResizeInAutoResizingDialog test
2019-02-06 danakj@chromium.org Don't WarmupCompositor() for a compositor-never-visible RenderWidget.
2019-02-06 sdefresne@chromium.org Revert "Move is_under_advanced_protection to AccountInfo"
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia 455c74797b46..98385ba6c5c6 (1 commits)
2019-02-06 alph@chromium.org [heap profiler] Remove Start/Stop from the PoissonAllocationSampler API
2019-02-06 rtoy@chromium.org Reset Debug references to 0
2019-02-06 dvadym@chromium.org Implement checking on different schemes in new architecture.
2019-02-06 drubery@chromium.org Reland "Add Office types to download_file_types.asciipb"
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 485c69814034..8af58ce7557c (2 commits)
2019-02-06 kbr@chromium.org Disable the browser's verbose logging in GPU integration tests.
2019-02-06 yigu@chromium.org [Animation Worklet] Disallow null mutator_items in AnimationWorkletProxyClient
2019-02-06 mdjones@chromium.org Add feature util for no-touch-mode
2019-02-06 ericorth@chromium.org Modernize DNS in SOCKS[5]ClientSocket
2019-02-06 sky@chromium.org Revert "Remove SetCanFocus from the window server"
2019-02-06 bratell@opera.com [jumbo] Rename two WebContentsLifetimeHelper in chrome/browser
2019-02-06 agl@chromium.org Decomplexify |AuthenticatorSupportedOptions|
2019-02-06 rkuroiwa@chromium.org D3D11CdmProxy should be reinitializable after hardware content protection teardown
2019-02-06 thakis@chromium.org Roll clang 353069:353250.
2019-02-06 mdjones@chromium.org Don't process suggestions if the first isn't what-you-typed
2019-02-06 zhuowang@google.com Update third_party/metrics_proto
2019-02-06 mamir@chromium.org [Sync::USS] Introduce about flag for USS passwords sync
2019-02-06 sebmarchand@chromium.org Move TraceEventSystemStatsMonitor to //chrome/browser/tracing/
2019-02-06 sahel@chromium.org Enable AutoscrollBrowserTest.AutoscrollFling
2019-02-06 cjgrant@chromium.org Revert "Android: Minor simplification to conditionals in abi.gni"
2019-02-06 dtseng@chromium.org Do not announce live regions from pages without focus
2019-02-06 mcnee@chromium.org Have scroll bubble cancellation consider nested OOPIFs
2019-02-06 yrsun@chromium.org Add description about translation target language
2019-02-06 bungeman@chromium.org Roll src/third_party/freetype/src/ 1e7a8f30c..a6feefdfe (4 commits)
2019-02-06 carlscab@google.com Move QueueEnabledVoter to TaskQueue
2019-02-06 wittman@chromium.org [Sampling profiler] Move WorkIdProvider to ThreadControllerWithMessagePumpImpl
2019-02-06 jennyz@chromium.org Disable zero state by default.
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/perfetto db11588b027f..26c6e4845dc1 (1 commits)
2019-02-06 ender@google.com Update font size and colors for new layout cards
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/catapult fb5956e43a5a..4e2870c4be46 (1 commits)
2019-02-06 metzman@chromium.org Revert "Add build file for PFFFT"
2019-02-06 findit-for-me@appspot.gserviceaccount.com Revert "Add AUTOSCROLL scroll input source."
2019-02-06 harringtond@chromium.org Re-enable flaky tests for Auto Fetch
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/chromite 363655366ecf..5a11aef19b02 (14 commits)
2019-02-06 sebsg@chromium.org Revert "Add Office types to download_file_types.asciipb"
2019-02-06 robertogden@chromium.org HTTPS Previews: Guard against redirect loops
2019-02-06 khachatryan@chromium.org [ChromeDriver] Disable maximize window java tests on Mac
2019-02-06 rockot@google.com [SM] Support best-effort BindInterface priority
2019-02-06 emircan@chromium.org Disable share button when nothing is chosen on tab view
2019-02-06 fhorschig@chromium.org [Mfill Android] Right-align the scrollable keyboard accessory TabLayout
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia faa44a4c490b..455c74797b46 (6 commits)
2019-02-06 dmurph@chromium.org [DOMStorageS13N] Making bind calls sync and adding crash info
2019-02-06 lazyboy@chromium.org Make ExtensionHostMsg_PostMessage a control IPC.
2019-02-06 fs@opera.com Make NinePieceImagePainter tiling setup more functional
2019-02-06 alessiob@chromium.org Add build file for PFFFT
2019-02-06 sdy@chromium.org Fix system hotkeys like cmd+` in app shims.
2019-02-06 v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update V8 to version 7.4.89.
2019-02-06 cmp@chromium.org IndexedDB: Update task type from kInternalIndexedDB to kDatabaseAccess
2019-02-06 takumif@chromium.org Revert "Add more filters to UKM service. Fix copy-paste bug :("
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/webrtc 38c83b97138a..4092d6fb052b (8 commits)
2019-02-06 alexclarke@chromium.org Rename MaybeScheduleImmediateWork
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal dac626c6844c..485c69814034 (4 commits)
2019-02-06 falken@chromium.org service worker: Refactoring in job unittest to use signal instead of RunUntilIdle.
2019-02-06 mmourgos@chromium.org Update AppListSearchResultOpenType UMA descripton.
2019-02-06 carlscab@google.com Refactor sequence_manager_impl_unittest.cc
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/perfetto fd60cc8f224d..db11588b027f (1 commits)
2019-02-06 tobiasjs@google.com [wv] Cleanup incorrect uses of it's and its.
2019-02-06 bratell@opera.com Correcting path to graphics/dom_node_id.h in BUILD.gn
2019-02-06 ahemery@chromium.org Navigation: Implement NavigationClient CommitFailed callback.
2019-02-06 sebsg@chromium.org Add missing user action in actions.xml.
2019-02-06 mcasas@chromium.org Canvas2DLayerBridge: cleanups
2019-02-06 robliao@chromium.org Route Dark Mode Windows Colors through GetAuraColor()
2019-02-06 amaralp@chromium.org Simplifying Native Page Theming and Background Coloring
2019-02-06 dalecurtis@chromium.org Add Media.PipelineStatus.AudioVideo.AV1.SW histogram.
2019-02-06 renjietang@chromium.org Add new quic error code QUIC_STALE_CONNECTION_CANCELLED in enums.
2019-02-06 fdoray@chromium.org TaskScheduler: Track number of Sequences per priority.
2019-02-06 johnidel@chromium.org Fix AdsPageLoadMetricsObserverBrowserTest.FramePixelSize flakiness
2019-02-06 abhijeet@igalia.com Port signin_util_win.cc to IdentityManager
2019-02-06 digit@google.com third_party/ashmem: Use ASharedMemory_create() et al.
2019-02-06 danakj@chromium.org Null out the WebWidgetClient in WebViewImpl::Close().
2019-02-06 ericorth@chromium.org Rewrite StaleHostResolver around CreateRequest() API
2019-02-06 drott@chromium.org Strip ttf-mscorefonts-installer reference from build instructions
2019-02-06 etiennep@chromium.org [Zucchini]: Swap ordering back to Zucchini in ArchivePatchHelper.
2019-02-06 sahel@chromium.org Add AUTOSCROLL scroll input source.
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/angle bf5dbd8d67fe..eb47e2c4bd08 (1 commits)
2019-02-06 svillar@igalia.com Move observing logic to Init/Shutdown in ChildAccountService
2019-02-06 agrieve@chromium.org Android: Minor simplification to conditionals in abi.gni
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia e956049450f6..faa44a4c490b (1 commits)
2019-02-06 tiborg@chromium.org [vr] Request VR module on intent rather than on pre inflation startup
2019-02-06 mbonadei@chromium.org Remove deprecated cricket::NS_JINGLE_RTP.
2019-02-06 smaier@chromium.org Reland "Rerouting all Java tasks through TaskRunner API"
2019-02-06 flackr@chromium.org Dispatch transitioncancel event if transition animation is interrupted.
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/depot_tools c4cf541859e6..a2d5f7847748 (1 commits)
2019-02-06 digit@google.com android: Add missing localized string outputs.
2019-02-06 skyostil@chromium.org android: Deal with child process termination before launch has concluded
2019-02-06 adunaev@igalia.com [ozone/wayland] The fuzzer for wayland buffers is introduced.
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 27a01705d27f..dac626c6844c (3 commits)
2019-02-06 nasko@chromium.org Move some NavigationController unit tests to use NavigationSimulator.
2019-02-06 harringtond@chromium.org Add Enabled_AutoFetch experiment
2019-02-06 mlippautz@chromium.org DragController: Clear DragState in DragEnd
2019-02-06 isandrk@google.com [Locked Fullscreen] Properly set window bounds for pinned windows
2019-02-06 agrieve@chromium.org Android: Minor no-op tweaks to action_with_pydeps
2019-02-06 spang@chromium.org [Fuchsia] Clean up path usage in GN templates
2019-02-06 timvolodine@chromium.org [AW] Disable WebViewLayoutTest.testRequestMIDIAccess due to failures
2019-02-06 sebsg@chromium.org [Sheriff] Update expectations for ext/wpt/h/d/interfaces.worker.html
2019-02-06 davidben@chromium.org Roll src/third_party/boringssl/src 1a51a5b4a..70fe61055
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/depot_tools 484d74fa21a5..c4cf541859e6 (1 commits)
2019-02-06 raleksandrov@google.com Do not update detected time on every new version downloaded
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/webrtc 3f408d006a60..38c83b97138a (1 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/chromite b0d7bc961a5a..363655366ecf (1 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/perfetto 71b40a07a007..fd60cc8f224d (1 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia 37b7d41d01cb..e956049450f6 (1 commits)
2019-02-06 nuskos@chromium.org Add mojo struct traits for perfetto::DataSourceConfig and perfetto::ChromeConfig.
2019-02-06 jkarlin@chromium.org Set the TopFrameOrigin for Dedicated Workers and Worklets
2019-02-06 dvadym@chromium.org Fix NavigationHandleImpl::HasUserGesture.
2019-02-06 eseckler@chromium.org perfetto: add trace stats to json trace
2019-02-06 mamir@chromium.org [Sync] Some cleanup in ProtocolEvent
2019-02-06 lizeb@chromium.org blink/bindings: Park ParkableStrings in foreground as well.
2019-02-06 hferreiro@igalia.com Move IdentityGetAccountsFunction to C++ IdentityManager
2019-02-06 hans@chromium.org Add ToTLinuxOfficial bot (milo, tests, mb)
2019-02-06 raphael.kubo.da.costa@intel.com CanvasPath: Switch from [DefaultValue=Undefined] to standard WebIDL syntax
2019-02-06 michaelludwig@google.com Fix extension checks so the gl interface passes Skia validation
2019-02-06 mharanczyk@opera.com Fix memory leak in TestRenderFrameHost::SimulateCommitProcessed.
2019-02-06 siggi@chromium.org RC: Rename resource_coordinator namespace to performance_manager.
2019-02-06 abhijeet@igalia.com Eliminate use of SigninManager in password_store_signin_notifier_impl_unittest.cc
2019-02-06 brunoad@chromium.org [a11y] Prevent focus on icon and progress bar.
2019-02-06 eui-sang.lim@samsung.com cache storage: Rename QueryParams to CacheQueryOptions
2019-02-06 rayankans@chromium.org [Background fetch] Forward-fix test regression.
2019-02-06 v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update V8 to version 7.4.87.
2019-02-06 kojii@chromium.org [auto] Update FlagExpectations for LayoutNG
2019-02-06 siggi@chromium.org Reland "RC: Move the graph to chrome/browser/performance_manager."
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 87567217cbdc..27a01705d27f (1 commits)
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia 01c24cd1f469..37b7d41d01cb (1 commits)
2019-02-06 etiennep@chromium.org Revert "[Task Scheduler]: Merge blocking and non-blocking pools."
2019-02-06 jochen@chromium.org When turning a download into a navigation, navigate the right frame
2019-02-06 arthursonzogni@chromium.org Reset navigations in pending deletion frame.
2019-02-06 mlippautz@chromium.org leak-detector: Remove InternalSettings supplement from Page
2019-02-06 robliao@chromium.org Add kColorId_EnabledMenuItemForegroundColor to the Common Theme Aura Dark Mode List
2019-02-06 tonikitoo@igalia.com Unify AccountInvestigator::On{Gaia}AccountsInCookieUpdated
2019-02-06 ioanap@chromium.org Extract generation logic from the accessory controller into a separate one
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal d62c94c7c614..87567217cbdc (1 commits)
2019-02-06 treib@chromium.org sync_ui_util cleanup: Pass only what's required to helpers
2019-02-06 sdefresne@chromium.org Remove uses of deprecated RegisterListPref
2019-02-06 tobiasjs@google.com [aw] Force Dark implementation for WebView
2019-02-06 sigurds@chromium.org Ensure V8 header dependency from translate component
2019-02-06 tonikitoo@igalia.com [s13n] Replace use of GaiaCookieManagerService in account_reconcilor_unittest.cc
2019-02-06 alexclarke@chromium.org Fix NativeBrowserTestActivity and multiple onStarts
2019-02-06 the_jk@opera.com Make asan blacklists optional
2019-02-06 carlscab@google.com Mock MessagePump that advances time as needed.
2019-02-06 pnoland@chromium.org [Chromeshine] Change compile flag to target canary/dev only
2019-02-06 cerqueira@chromium.org Fix parent avatar on blocked websites page
2019-02-06 raphael.kubo.da.costa@intel.com PluginArray: Switch from [DefaultValue] to standard WebIDL syntax
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll Fuchsia SDK from a2bdd07b4fc2 to 85d0c6cd8b3c
2019-02-06 gyuyoung@igalia.com s13n: Replace all uses of AccountTrackerService in inline_login_handler_chromeos.cc
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/skia 3abdd7a90e45..01c24cd1f469 (1 commits)
2019-02-06 dullweber@chromium.org Call ServiceWorker deletion callback early in case of error
2019-02-06 altimin@chromium.org Remove ScopedTaskEnvironment::LifetimeObserver.
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 7034717a1cfb..d62c94c7c614 (1 commits)
2019-02-06 raul@tambre.ee //components: Convert base::(U)Int(64)ToString(16) to NumberToString(16)
2019-02-06 msarda@chromium.org Make SigninViewControllerDelegate an interface.
2019-02-06 carlscab@google.com [scheduling] Use ScopedTaskEnvironment instead of MessageLoop in safe_browsing
2019-02-06 msisov@igalia.com Add missing algorithm header to webcursor_ozone
2019-02-06 v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update V8 to version 7.4.86.
2019-02-06 bsazonov@chromium.org [Android] Remove explicit R package spec from SyncPreferenceUtils
2019-02-06 leszeks@chromium.org [v8] Add flow events to script streamer
2019-02-06 chromium-autoroll@skia-public.iam.gserviceaccount.com Roll src/third_party/catapult 78b1c61fff2b..fb5956e43a5a (1 commits)
2019-02-06 rakina@chromium.org Make mouse-triggered focus use flat tree traversal
2019-02-06 eseckler@chromium.org perfetto: Separate JSON conversion from perfetto consumer
2019-02-06 wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com Import wpt@de6f8fcf9b87e80811e9267a886cf891f6f864e0
2019-02-06 arthursonzogni@chromium.org Stop waiting for inline code cache when CacheInlineScriptCode is disabled.
2019-02-06 chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com Roll src-internal 5ae20aeb4844..7034717a1cfb (2 commits)
Created with:
gclient setdep -r ../src@635f11205d
The AutoRoll server is located here: https://autoroll.skia.org/r/chromium-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=skia.primary:Perf-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Release-All-CommandBuffer;skia.primary:Test-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Debug-All-CommandBuffer
TBR=fmalita@google.com
Change-Id: Ie5a9ee66104565492d5710c7a6b0f383b9b0a75a
Reviewed-on: https://skia-review.googlesource.com/c/190074
Reviewed-by: skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.com>
Commit-Queue: skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.com>
2019-02-07 11:23:30 +00:00
Chris Dalton
382b122e45
Revert "Add a GpuGM class for GPU-only tests"
...
This reverts commit f5efa78902
.
Reason for revert: PreAbandon failures
Original change's description:
> Add a GpuGM class for GPU-only tests
>
> Bug: skia:8731
> Change-Id: Ic81f21621c0183bb356601eb663fa1ee334bca55
> Reviewed-on: https://skia-review.googlesource.com/c/189134
> Reviewed-by: Brian Osman <brianosman@google.com>
> Reviewed-by: Mike Klein <mtklein@google.com>
> Commit-Queue: Chris Dalton <csmartdalton@google.com>
TBR=mtklein@google.com ,brianosman@google.com,csmartdalton@google.com
Change-Id: Iab2a4323f077277445add18bb0e8c658d3bf0d2a
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: skia:8731
Reviewed-on: https://skia-review.googlesource.com/c/190121
Reviewed-by: Chris Dalton <csmartdalton@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
2019-02-07 10:06:01 +00:00
skia-recreate-skps
859db6b5a0
Update go_deps asset
...
Automatic commit by the UpdateGoDEPS bot.
TBR=borenet@google.com
Change-Id: Ifc899813684593b9a6b7086f4bef210b9a06468d
Reviewed-on: https://skia-review.googlesource.com/c/190120
Reviewed-by: <skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com>
Commit-Queue: <skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com>
2019-02-07 05:40:29 +00:00
recipe-roller
f36ad269e8
Roll recipe dependencies (trivial).
...
This is an automated CL created by the recipe roller. This CL rolls recipe
changes from upstream projects (e.g. depot_tools) into downstream projects
(e.g. tools/build).
More info is at https://goo.gl/zkKdpD . Use https://goo.gl/noib3a to file a bug.
recipe_engine:
https://crrev.com/3fd6d5382c9a43f9bcd7ed8cf855b0f60889cc0e [swarming] Fix to_jsonish() bug (joshuaseaton@google.com )
TBR=borenet@google.com
Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: I6aa37374640231a12cb80b39afadd0bf019bc2b8
Reviewed-on: https://skia-review.googlesource.com/c/190080
Reviewed-by: Recipe Roller <recipe-roller@chromium.org>
Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
2019-02-07 01:08:19 +00:00
Mike Reed
88f5671f71
move SkMetaData into src
...
Bug: skia:
Change-Id: I3ef8c3ec0d6f33bd9a167b99313d6d313a748494
Reviewed-on: https://skia-review.googlesource.com/c/189284
Reviewed-by: Mike Reed <reed@google.com>
Auto-Submit: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
2019-02-07 00:26:49 +00:00
Ben Wagner
2fc1474f9d
Add BOT/EOT to Shaper.
...
This informs HarfBuzz when we are at the beginning or end of a
paragraph so that it can handle a few rules in a special way.
Change-Id: I66a306f1ff7ddb2c1546b0fd9c0cee94cb9f7006
Reviewed-on: https://skia-review.googlesource.com/c/189850
Reviewed-by: Herb Derby <herb@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
2019-02-06 23:04:59 +00:00
Hal Canary
c1a2ea33a3
bin/gn format gn/skia.gni
...
Change-Id: Id79cf08223d46d2f2558693208d7cb8a82d6d0a5
Reviewed-on: https://skia-review.googlesource.com/c/190001
Reviewed-by: Hal Canary <halcanary@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
2019-02-06 22:24:19 +00:00
Herb Derby
f7ea4f5d5d
Remove the distinction between key and device descriptors
...
Change-Id: I12ac0f77124caae0be7b3a178683e5a3213f9beb
Reviewed-on: https://skia-review.googlesource.com/c/189869
Commit-Queue: Herb Derby <herb@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Reviewed-by: Khushal Sagar <khushalsagar@chromium.org>
2019-02-06 21:50:19 +00:00
Ben Wagner
6e70db0587
Roll HarfBuzz
...
8be74d8553..1e06282105
This changes the upstream to github (where actual work is now done) and
picks up AAT work so we can drop the (buggy) CoreText backend on Mac.
Change-Id: Ib3fbbb8e07910d570e70489b4e78a9cb6fac3630
Reviewed-on: https://skia-review.googlesource.com/c/189876
Commit-Queue: Hal Canary <halcanary@google.com>
Reviewed-by: Hal Canary <halcanary@google.com>
2019-02-06 21:28:19 +00:00
Hal Canary
6102192b96
SkLoadICU: simplify
...
Change-Id: I98cd1f36ca96a92b72974ae228465199638e4bea
Reviewed-on: https://skia-review.googlesource.com/c/189864
Reviewed-by: Ben Wagner <bungeman@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
2019-02-06 21:20:49 +00:00
Robert Phillips
dbaf317cd4
Move GrContextPriv methods to their own .cpp file
...
Centralize these for my sanity. Most will also be parceled out to other contexts.
Change-Id: If0e7e98bcf66c4d8a3391f9b04e643ccc91af4ad
Reviewed-on: https://skia-review.googlesource.com/c/189488
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
2019-02-06 21:15:58 +00:00
Mike Klein
53a5298a2f
add mad() and shuffle() to SkVx
...
Change-Id: Ie3e5b353f84e74d398a5350dc0baff5541789119
Reviewed-on: https://skia-review.googlesource.com/c/189982
Commit-Queue: Mike Klein <mtklein@google.com>
Commit-Queue: Herb Derby <herb@google.com>
Auto-Submit: Mike Klein <mtklein@google.com>
Reviewed-by: Herb Derby <herb@google.com>
2019-02-06 21:12:48 +00:00
Chris Dalton
f5efa78902
Add a GpuGM class for GPU-only tests
...
Bug: skia:8731
Change-Id: Ic81f21621c0183bb356601eb663fa1ee334bca55
Reviewed-on: https://skia-review.googlesource.com/c/189134
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
2019-02-06 21:04:59 +00:00
Mike Klein
429251513f
fill in most remaining skvx operations
...
Obviously lots of these new operations like sqrt() will want platform
specialization. That'll come later.
Change-Id: Ia0758425d4ec5911968a3d0ad63fa387b9b4cb39
Reviewed-on: https://skia-review.googlesource.com/c/189848
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Herb Derby <herb@google.com>
Auto-Submit: Mike Klein <mtklein@google.com>
2019-02-06 20:03:24 +00:00
recipe-roller
7c19727a45
Roll recipe dependencies (trivial).
...
This is an automated CL created by the recipe roller. This CL rolls recipe
changes from upstream projects (e.g. depot_tools) into downstream projects
(e.g. tools/build).
More info is at https://goo.gl/zkKdpD . Use https://goo.gl/noib3a to file a bug.
recipe_engine:
https://crrev.com/cc676548eec015636830abd3a8c53c40cd8460a6 [swarming] Add support for outputs (joshuaseaton@google.com )
TBR=borenet@google.com
Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: I810d6128074e485115927dcca9a5922139706aa9
Reviewed-on: https://skia-review.googlesource.com/c/189872
Reviewed-by: Recipe Roller <recipe-roller@chromium.org>
Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
2019-02-06 19:59:24 +00:00
Herb Derby
f272b8ff23
Remove filterRec bypass on MakeRecAndEffects
...
Change-Id: I1845f2a06edcfee97b9ca7aa3205328c87c4b7ae
Reviewed-on: https://skia-review.googlesource.com/c/189900
Reviewed-by: Ben Wagner <bungeman@google.com>
Commit-Queue: Herb Derby <herb@google.com>
2019-02-06 19:20:22 +00:00
Ravi Mistry
2b1d179860
Have the RecreateSKPs bot upload to partner bucket
...
It will upload to a directory that specifies the day the SKPs were created on:
gs://chrome-partner-telemetry/skps/2019-02-05
Bug: skia:8738
Change-Id: Ic6b719770e16408d580e552af41c1a41c682935a
Reviewed-on: https://skia-review.googlesource.com/c/188300
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Ravi Mistry <rmistry@google.com>
2019-02-06 18:35:12 +00:00
Herb Derby
62a9d31375
Reorganize MakeRecAndEffects and SkScalerContext ctor
...
* This will allow the key descriptor and the device descriptor
to be the same in SkRemoteGlyphCache.
* Simplifying SkRemoteGlyphCache descriptors will allow the
rendering code in SkRemoteGlyphCache and the code in the GPU to
be the same.
Change-Id: I1225c7e9017c05518ccadee1522751b94b1d97af
Reviewed-on: https://skia-review.googlesource.com/c/189582
Reviewed-by: Ben Wagner <bungeman@google.com>
Commit-Queue: Herb Derby <herb@google.com>
2019-02-06 18:30:02 +00:00
Mike Reed
cc88f3a72d
per-contour variant of SkPathMeasure
...
Bug: skia:8721
Change-Id: I1e79a49dee25ccc9138baf6fb2df3dc80d1ff66b
Reviewed-on: https://skia-review.googlesource.com/c/187922
Commit-Queue: Mike Reed <reed@google.com>
Reviewed-by: Kevin Lubick <kjlubick@google.com>
2019-02-06 18:21:22 +00:00
Ravi Mistry
4b261eac8c
Remove PerCommit-Bookmaker
...
Requested by reed@
NoTry: true
Bug: skia:
Change-Id: Iba7e1f838a6a2d7004dacd59186481208a6dd66d
Reviewed-on: https://skia-review.googlesource.com/c/189849
Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Commit-Queue: Ravi Mistry <rmistry@google.com>
2019-02-06 18:12:03 +00:00
Jim Van Verth
98385ba6c5
Switch back to non-Retina display resolution.
...
Gives 1:1 pixel correspondence with GM resolutions, and fixes
viewport issues.
Bug: skia:8737
Change-Id: Ieb87ed32cbb3211bdb4cdfbcc486c7b57b1c1eda
Reviewed-on: https://skia-review.googlesource.com/c/188627
Commit-Queue: Jim Van Verth <jvanverth@google.com>
Commit-Queue: Mike Reed <reed@google.com>
Auto-Submit: Jim Van Verth <jvanverth@google.com>
Reviewed-by: Mike Reed <reed@google.com>
2019-02-06 16:53:02 +00:00
Mike Klein
455c74797b
sketch SkVx
...
Change-Id: I1cb8113af243ed6327179d295835295834a752aa
Reviewed-on: https://skia-review.googlesource.com/c/189581
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Herb Derby <herb@google.com>
Auto-Submit: Mike Klein <mtklein@google.com>
2019-02-06 16:06:32 +00:00
Ben Wagner
6c30e74dd0
Add DDL jobs for Intel
...
To work around skia:8709, I'm moving the DDL tests to IntelIris640. The
ASAN jobs still show memory leaks in the driver, but at least I can
identify which calls are leaking and suppress the LSAN warnings.
Adds an SK_ENABLE_SCOPED_LSAN_SUPPRESSIONS define that indicates that
the LSAN header files are available, which is set in recipes for the
Linux ASAN builds. Adds __lsan::ScopedDisabler in four locations for
two Vulkan API calls:
- CreateGraphicsPipelines in GrVkPipeline::Create and
GrVkCopyPipeline::Create
- CreateDescriptorSetLayout in
GrVkDescriptorSetManager::DescriptorPoolManager::DescriptorPoolManager
constructor (2 calls)
Also adds a regular suppression for libxcb.so.
See bugs listed below for more details on the leaks.
Bug: skia:8710, skia:8712, skia:8713
Change-Id: I55c6e5d483b4aeed5cd44c64219539ca7214187f
Reviewed-on: https://skia-review.googlesource.com/c/184071
Commit-Queue: Ben Wagner <benjaminwagner@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
Auto-Submit: Ben Wagner <benjaminwagner@google.com>
2019-02-06 15:53:32 +00:00
Ethan Nicholas
7193586dab
fixed SRGB effect color accuracy
...
Bug: skia:
Change-Id: I8715357f053fbfab73e9cbe674dd082aabe77329
Reviewed-on: https://skia-review.googlesource.com/c/189841
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
2019-02-06 15:32:52 +00:00
recipe-roller
79bd872596
Roll recipe dependencies (trivial).
...
This is an automated CL created by the recipe roller. This CL rolls recipe
changes from upstream projects (e.g. depot_tools) into downstream projects
(e.g. tools/build).
More info is at https://goo.gl/zkKdpD . Use https://goo.gl/noib3a to file a bug.
depot_tools:
https://crrev.com/a2d5f784774876381847d753ee3cf98dc778363b Add fetch config for new node-ci repository. (machenbach@chromium.org )
TBR=borenet@google.com
Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: Ib4b06d1b66e0ff43d1120fe2596a1578ab546f6e
Reviewed-on: https://skia-review.googlesource.com/c/189844
Reviewed-by: Recipe Roller <recipe-roller@chromium.org>
Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
2019-02-06 15:24:23 +00:00
Brian Osman
88cfc50bb6
Remove all references to jsoncpp (build scripts, DEPS, etc)
...
Bug: skia:
Change-Id: I3cec245e537eee3e6ceb0a4a52bad733c2c8746e
Reviewed-on: https://skia-review.googlesource.com/c/189842
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
2019-02-06 15:15:52 +00:00
Brian Osman
5c11d5c084
Convert bookmaker to SkJSON
...
Verified that running bookmaker produces an identical fiddle.json
before and after this change.
Bug: skia:
Change-Id: I1aa7477348a5f8c362201199b130508c2818116f
Reviewed-on: https://skia-review.googlesource.com/c/188303
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
2019-02-06 15:08:32 +00:00
recipe-roller
faa44a4c49
Roll recipe dependencies (trivial).
...
This is an automated CL created by the recipe roller. This CL rolls recipe
changes from upstream projects (e.g. depot_tools) into downstream projects
(e.g. tools/build).
More info is at https://goo.gl/zkKdpD . Use https://goo.gl/noib3a to file a bug.
recipe_engine:
https://crrev.com/acaaf39516da65c2cad56e8e10c4731c3fc539df [swarming] Fix analyze() bug (joshuaseaton@google.com )
TBR=borenet@google.com
Recipe-Tryjob-Bypass-Reason: Autoroller
Bugdroid-Send-Email: False
Change-Id: I6c1b49241cfbef8a46e52a71808a30056ce15a0b
Reviewed-on: https://skia-review.googlesource.com/c/189840
Reviewed-by: Recipe Roller <recipe-roller@chromium.org>
Commit-Queue: Recipe Roller <recipe-roller@chromium.org>
2019-02-06 14:31:22 +00:00
Brian Osman
e956049450
Fix makeColorSpace on YUV images
...
This is a second attempt at https://skia-review.googlesource.com/c/skia/+/182816
This version ensures that SkImage::colorSpace() returns the target after
makeColorSpace has been called (to match user expectations, and match
behavior with lazy images). Given that, the xform is baked into the FP
within the maker, rather than externally (again, this matches the lazy
image behavior).
Additionally, the target color space needs to be taken into account when
flattening into the RGB proxy, and some base-class methods need to use
this->colorSpace() rather than fColorSpace to tag the output.
Added a GM that tests quite a few different scenarios. All images have
makeColorSpace() applied:
- Raster image (for reference)
- yuvImage
- yuvImage->makeSubset()
- yuvImage->makeNonTextureImage()
- readPixels(yuvImage)
All images should look the same as the top row. Verified that they do
match, in both untagged (gl) and tagged (glsrgb) configs.
I think there may still be some cases where we transform too many or too
few times, or incorrectly tag the result of an image operation, but this
is much more correct than before, and should (I hope) address Chrome's
immediate needs.
Bug: skia:8740
Change-Id: I5d501879866861a5ba91240f688d3f95711f7595
Reviewed-on: https://skia-review.googlesource.com/c/189494
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
2019-02-06 13:45:20 +00:00
Mike Reed
37b7d41d01
Revert "templatize drawString"
...
This reverts commit 9d895824c6
.
Reason for revert: breaks bookmaker
Original change's description:
> templatize drawString
>
> Bug: skia:
> Change-Id: Icd1104bfb88e324458d89e40633ddc01f131c4e9
> Reviewed-on: https://skia-review.googlesource.com/c/189165
> Commit-Queue: Mike Reed <reed@google.com>
> Auto-Submit: Mike Reed <reed@google.com>
> Reviewed-by: Mike Klein <mtklein@google.com>
TBR=mtklein@google.com ,reed@google.com
# Not skipping CQ checks because original CL landed > 1 day ago.
Bug: skia:
Change-Id: I345c052b808c7ad92074dcdafa83577060f9e701
Reviewed-on: https://skia-review.googlesource.com/c/189648
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
2019-02-06 11:07:29 +00:00