- 20 Jan, 2018 23 commits
-
-
Sergey Ulanov authored
Previously ImageTransportSurface was creating GLSurfaceOSMesa, but that this is wrong because GLSurfaceOSMesa doesn't support SwapBuffers(). Updated ImageTransportSurface to call CreateViewGLSurface(), which in turn creates GLSurfaceOSMesaHeadless. That class handles SwapBuffers() correctly. Bug: 778467 Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: I701dd219ad5867359ade613fbb1ea24d722f55f3 Reviewed-on: https://chromium-review.googlesource.com/876993Reviewed-by:
Antoine Labour <piman@chromium.org> Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Cr-Commit-Position: refs/heads/master@{#530693}
-
Parastoo Geranmayeh authored
Allow for certain number of UNKOWN fields between credit card fields. Otherwise, we would miss some fields (CVC in most cases,) because the detection of the fields are inter-dependent. We can't allow for unlimited number of UNKONWN fields, because then the name fields in the address sections may be detected as the card holder name. Tests: test/135 the output was wrong, it's corrected. test/141 the output was wrong, it's still wrong, it would need another CL to fix the problem of the expiration date detection. It is modified to let this CL pass the tests, but the problem is not caused by this CL. Fixes: bbc.com (Desktop), barnesandnoble.com (Desktop), www.sky.com (Desktop), homedepot.com, and .. . Bug: 799990 Change-Id: Ie90bc7e33bee48e736af6783a697f680665ee3fc Reviewed-on: https://chromium-review.googlesource.com/862698 Commit-Queue: Parastoo Geranmayeh <parastoog@google.com> Reviewed-by:
Sebastien Seguin-Gagnon <sebsg@chromium.org> Cr-Commit-Position: refs/heads/master@{#530692}
-
Erik Luo authored
The GlassPane relies on an accurate scrollbar width to determine correct popover dimensions. It used to hard code a number, but due to overlay scrollbars, platform differences, and OS scrollbar size settings, it could fail. Screenshot: https://imgur.com/a/slnDX Bug: 746861 Change-Id: I8d37ff1842ba201bf26cdf6de6596716c4eab092 Reviewed-on: https://chromium-review.googlesource.com/876656Reviewed-by:
Andrey Lushnikov <lushnikov@chromium.org> Commit-Queue: Erik Luo <luoe@chromium.org> Cr-Commit-Position: refs/heads/master@{#530691}
-
Bruce Dawson authored
When build optimizations collide... In order to avoid the non-trivial cost of including windows.h almost everywhere the windows_types.h file was added. This includes enough defines and types that many header files that previously required windows.h can use it instead. However there are a couple of .cc files - win_util.cc and process_metrics_win.cc - that need to include windows.h before including their associated header files so that they will get the full declarations of internal types. This sort of include ordering guarantee is incompatible with jumbo files. This change solves the problem in a more stable way by adding separate header files which include windows.h and then unilaterally declare the necessary Windows-dependent structs. These headers are then used when needed to gain access to IoCounters and NONCLIENTMETRICS_XP. This change also removes a redundant include of windows.h. Bug: 796644 Change-Id: I81e3f8f21a7ba917e20f0a710285d7da64a95ae8 Reviewed-on: https://chromium-review.googlesource.com/872230 Commit-Queue: Scott Violet <sky@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#530690}
-
Hector Carmona authored
String remains the same, but context is expanded on. Bug: b/71972241 Change-Id: I522cb01d840fcc7204448c9c40dcfa869ee0e543 Reviewed-on: https://chromium-review.googlesource.com/876951Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Hector Carmona <hcarmona@chromium.org> Cr-Commit-Position: refs/heads/master@{#530689}
-
Sadrul Habib Chowdhury authored
Make a copy of the string in TracingUmaTracker to avoid crashes on some platforms. BUG=803856 Change-Id: Ie7a1f28c7b934d1087cd6ec6602cdc9dec1b1ca9 Reviewed-on: https://chromium-review.googlesource.com/876534Reviewed-by:
James MacLean <wjmaclean@chromium.org> Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org> Cr-Commit-Position: refs/heads/master@{#530688}
-
Jennifer Apacible authored
Change-Id: I2c5b0d9fb800923cc68d49ee3293fe8299edfc12 Reviewed-on: https://chromium-review.googlesource.com/876684Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: apacible <apacible@chromium.org> Cr-Commit-Position: refs/heads/master@{#530687}
-
Manish Jethani authored
crrev.com/c/765642 makes user style sheets opt-in. In this patch we implement the "cssOrigin" option for tabs.insertCSS, similar to Firefox. If the value is set to "user", the CSS will be injected as a user style sheet. Style sheets specified in an extension's manifest are still injected as author style sheets. These are the code-level changes: 1. InjectDetails in extension_types.json now has a new "cssOrigin" property that takes the values "author" (default) and "user" 2. ScriptExecutor::ExecuteScript now takes a css_origin parameter of type base::Optional<CSSOrigin> 3. ExtensionMsg_ExecuteCode_Params now has a new member called css_origin of type base::Optional<CSSOrigin>, the value of which comes from the API call and is propagated down to blink::WebDocument This API change is fully backwards compatible. BUG=632009 Change-Id: Ia41ea4b917c7a9a4729e0a340ed7b3be43abdc11 Reviewed-on: https://chromium-review.googlesource.com/778402 Commit-Queue: Will Harris <wfh@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#530686}
-
James Forshaw authored
This CL fixes an issue when creating an impersonation LowBox token. The new token's DACL is taken from the current caller's default DACL which results in the an AC process not being able to open the token. This can lead to weird bugs during the bootstrapping of a process. Bug: 760977 Change-Id: Iac970feb2444f5aa6027838ce38bb88a3633caaa Reviewed-on: https://chromium-review.googlesource.com/873920Reviewed-by:
Will Harris <wfh@chromium.org> Commit-Queue: James Forshaw <forshaw@chromium.org> Cr-Commit-Position: refs/heads/master@{#530685}
-
Adrienne Walker authored
This matches the gpu rasterization benchmark using the same page set, and hopefully should avoid timing out on the FYI waterfall. Change-Id: I60132867929540e42c438a1e28ec412c35e15b00 Reviewed-on: https://chromium-review.googlesource.com/876958 Commit-Queue: enne <enne@chromium.org> Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Ned Nguyen <nednguyen@google.com> Cr-Commit-Position: refs/heads/master@{#530684}
-
Scott Violet authored
The bug occurred in finding the valid target. Specifically if the root has a transform we transform the event first, and then compare against the size of the root. For transforms that result in increasing the location (transform value < 1) the location would end up outside the bounds of the window, which results in treating the location as in the non-client area and targeting the root. The fix for now is not to consider the root as a target for the non-client area. A better fix may be to potentially transform the size by the targets transform (if there is one), but I'm holding off on that for now. We don't do scale bounds in WindowTargeter either. BUG=794262 TEST=covered by tests Change-Id: If7a913d934808fd4ffc404f74eea73d9f98b71ab Reviewed-on: https://chromium-review.googlesource.com/877219Reviewed-by:
Michael Wasserman <msw@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#530683}
-
Matt Reynolds authored
RawInputDataFetcher previously stored information about each connected gamepad in a RawGamepadInfo object internal to the data fetcher. This CL renames the object to RawInputGamepadDeviceWin and moves more of the capabilities and polling logic into that class. BUG=749295 Change-Id: I9b2ad1f2712e3c14289a9d9a159a04c4cf952d4e Reviewed-on: https://chromium-review.googlesource.com/875194 Commit-Queue: Matt Reynolds <mattreynolds@chromium.org> Reviewed-by:
Brandon Jones <bajones@chromium.org> Cr-Commit-Position: refs/heads/master@{#530682}
-
David Reveman authored
This prevents the old image from being discarded until it has been processed by the browser. It was possible to discard the image before receiving the ack from the browser without this. The result was a confusing UX, where the image had been discarded, but was still appeared in the picture list. Bug: 802218 Test: manual Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I0d9006361919a4a11edd515929384131427e3b73 Reviewed-on: https://chromium-review.googlesource.com/874799Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: David Reveman <reveman@chromium.org> Cr-Commit-Position: refs/heads/master@{#530681}
-
Jacob Dufault authored
Bug: 784495 Change-Id: Ia7a4450ea63eda77555b87357dda8834ea6ae3a4 Reviewed-on: https://chromium-review.googlesource.com/871573Reviewed-by:
Achuith Bhandarkar <achuith@chromium.org> Commit-Queue: Jacob Dufault <jdufault@chromium.org> Cr-Commit-Position: refs/heads/master@{#530680}
-
Steven Bennetts authored
This was an incorrect conversion from the old UI; VPN should show the proxy section. Bug: 802930 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: Iba5385a7286b8fc2c2b92a5ab15a4add65b79870 Reviewed-on: https://chromium-review.googlesource.com/876983Reviewed-by:
Toni Barzic <tbarzic@chromium.org> Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Cr-Commit-Position: refs/heads/master@{#530679}
-
Eugene Ostroukhov authored
This performs reload in the browser, to make it more consistent with regular reload expirience (e.g. warning about resubmitting POST navigation would be shown now). Bug: 614869 Change-Id: I90d36eb389b04cc41f5ab7524cbc6209bf100412 Reviewed-on: https://chromium-review.googlesource.com/860575 Commit-Queue: Eugene Ostroukhov <eostroukhov@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#530678}
-
pdfium-deps-roller@chromium.org authored
https://pdfium.googlesource.com/pdfium.git/+log/f668ed47ae54..5ca283f37681 $ git log f668ed47a..5ca283f37 --date=short --no-merges --format='%ad %ae %s' 2018-01-19 rharrison Remove code added in by a bad rebase or merge 2018-01-19 hnakashima Fix CFX_Matrix.RotateAt() Created with: roll-dep src/third_party/pdfium BUG=803732,803735 The AutoRoll server is located here: https://pdfium-roll.skia.org 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 Change-Id: Ib98604211a47521d853516da68adcdf091973e43 Reviewed-on: https://chromium-review.googlesource.com/876882 Reviewed-by: <pdfium-deps-roller@chromium.org> Commit-Queue: <pdfium-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#530677}
-
Steven Bennetts authored
This was only recently noticed when Shill started setting the property. Bug: 798924 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I031e0faf80fda62c006968009ab746d8c105e2de Reviewed-on: https://chromium-review.googlesource.com/876881 Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Toni Barzic <tbarzic@chromium.org> Cr-Commit-Position: refs/heads/master@{#530676}
-
Joshua Bell authored
A handful of TestExpectations entries noted in crbug.com/508734 tracked test behavior changes back when --enable-wptserve was a thing. Now it's the default for imported tests, so rebaseline and/or update expectations with specific tracking bugs. Bug: 508728,508734,651778,803942,803949 Change-Id: I9b360f3f2e0d46320e0c063ce27f992cfd8d2e81 Reviewed-on: https://chromium-review.googlesource.com/876769Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Robert Ma <robertma@chromium.org> Cr-Commit-Position: refs/heads/master@{#530675}
-
Stephen Chenney authored
The CSSGeneratedImageValue image and client cache has only one slot for the size of the image associated with any given client, but the client could be registered with an empty size and a non-empty size. In such cases we would not over-write the non-empty size with the empty size, despite having deleted the non-empty image. Subsequently removing the client again would try to remove the non-empty one instead. This patch adds DCHECKs to catch these cases, and fixes the logic to only store non-empty sizes. Comments are added explaining the invariant that the client only be present at one non-empty size at any given time. R=fs@opera.com BUG=803224 Change-Id: Ie5601aaffe6e3eace4ff4a989dc892bea4fd381b Reviewed-on: https://chromium-review.googlesource.com/876900Reviewed-by:
Fredrik Söderquist <fs@opera.com> Commit-Queue: Stephen Chenney <schenney@chromium.org> Cr-Commit-Position: refs/heads/master@{#530674}
-
Owen Min authored
Screenshot: https://drive.google.com/file/d/1H0fFnEPwxOtIwXQ_XOyChjaR-V88klKq/view?usp=sharing Bug: 803191 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I1a41f51a82213f628a3ab11b5af341cc94f89a56 Reviewed-on: https://chromium-review.googlesource.com/876765Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Owen Min <zmin@chromium.org> Cr-Commit-Position: refs/heads/master@{#530673}
-
Khushal authored
R=piman@chromium.org Change-Id: If0c213fe5b96ce874908a9ebafd92923c7c56be8 Reviewed-on: https://chromium-review.googlesource.com/877183Reviewed-by:
Antoine Labour <piman@chromium.org> Commit-Queue: Khushal <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/master@{#530672}
-
Xu Xing authored
Also refine GetActiveTextureUnit and FakeResourceProvider. This was to followup https://chromium-review.googlesource.com/c/chromium/src/+/859106. BUG=757291 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Change-Id: I40dd516e12c35a2388e9c857e87dbe83e638804c Reviewed-on: https://chromium-review.googlesource.com/875530Reviewed-by:
danakj <danakj@chromium.org> Commit-Queue: Xing Xu <xing.xu@intel.com> Cr-Commit-Position: refs/heads/master@{#530671}
-
- 19 Jan, 2018 17 commits
-
-
Ken Rockot authored
GamepadSharedBuffer was internally creating an anonymous shared memory object, prohibiting the object from being sharable as anything other than read-write on some platforms. This CL corrects the situation. Bug: 803768 Change-Id: I122d71753be2dd02d12e5bb9f23c1bfc71623f34 Reviewed-on: https://chromium-review.googlesource.com/877042Reviewed-by:
Reilly Grant <reillyg@chromium.org> Commit-Queue: Ken Rockot <rockot@chromium.org> Cr-Commit-Position: refs/heads/master@{#530670}
-
Ken Buchanan authored
This is a speculative fix to a problem that is causing flakiness on site isolation browser tests. It looks like the cause is that hit test queries are being sent to renderers before the LocalFrameView has begun lifecycle updates. These fail on out-of-process iframes when the Document has had layout but has not composited because BeginLifecycleUpdates() has not yet been called. This triggers a DCHECK on the hit testing path in PaintLayer. This change prevents hit testing in that case. Bug: 798476 Change-Id: Ie44fd3d5b988e1c758b7472af6444d7b260b15ec Reviewed-on: https://chromium-review.googlesource.com/876939 Commit-Queue: Ken Buchanan <kenrb@chromium.org> Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/master@{#530669}
-
Julia Tuttle authored
Apps should be able to use NEL, but they shouldn't share state with the main request context. Bug: 803604 Change-Id: I6533ce46e21c2b47e888524aeeeb293367919ab3 Reviewed-on: https://chromium-review.googlesource.com/875050 Commit-Queue: Julia Tuttle <juliatuttle@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#530668}
-
Eugene But authored
Replace WaitUntilCondition with WaitUntilConditionOrTimeout. Bug: 784735 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I73039a4c54223d64ddab73a8ef9a7eb8e93ea1a3 Reviewed-on: https://chromium-review.googlesource.com/874552Reviewed-by:
Yuke Liao <liaoyuke@chromium.org> Commit-Queue: Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#530667}
-
Paul Jensen authored
Prevent SpdySessions from being shared by SpdyStreams using different socket tags by keying SpdySessions on socket tags. In other words when a request comes in, an existing SpdySession will be found and reused if the socket tag of the SpdySession matches that of the request, otherwise a new TransportClientSocket, SSLClientSocket, and potentially SpdySession will be created. This functionality is achieved by adding the socket tag to the SpdySessionKey. HttpStreamFactoryImplJob passes the socket tag from the HttpRequestInfo down to SpdySessionKey(). Bug: 520198 Change-Id: I495f241ea3a60f9070b049450b8fc8a418914795 Reviewed-on: https://chromium-review.googlesource.com/867354 Commit-Queue: Paul Jensen <pauljensen@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#530666}
-
Bill Orr authored
Bug: 800883 Change-Id: I34d2085f0f3d3d94e6120e1a7c9fa1a1f6443d67 Reviewed-on: https://chromium-review.googlesource.com/869331 Commit-Queue: Bill Orr <billorr@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Reviewed-by:
David Dorwin <ddorwin@chromium.org> Cr-Commit-Position: refs/heads/master@{#530665}
-
Wez authored
Bug: 738275, 799268 Change-Id: I6a2c4b313879b7d690661fe95d4d84ed03315028 Reviewed-on: https://chromium-review.googlesource.com/876987Reviewed-by:
Scott Graham <scottmg@chromium.org> Commit-Queue: Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#530664}
-
Hidehiko Abe authored
BUG=784732 TEST=Ran base_unittests -gtest_filter=*Optional* Change-Id: Ibb5d7cc5d62deacdba7f811f5a7b83c1c58c3907 Reviewed-on: https://chromium-review.googlesource.com/855976Reviewed-by:
danakj <danakj@chromium.org> Commit-Queue: Hidehiko Abe <hidehiko@chromium.org> Cr-Commit-Position: refs/heads/master@{#530663}
-
Erik Luo authored
In StylesSidebarPane, you can press Arrow keys to increment a numeric value. Holding Alt/Shift/Ctrl can affect the delta by 0.1/10/100 This CL - Brings the same ability to 2 clients of UI.bindInput(): Latitude/longitude in Sensors and width/height in Device Mode - Gives Latitude/longitude smaller step sizes of 0.01/1/10. Bug: 637897 Change-Id: I3844280a71449ab5021c9aadee9313cb626379b6 Reviewed-on: https://chromium-review.googlesource.com/818535Reviewed-by:
Joel Einbinder <einbinder@chromium.org> Reviewed-by:
Andrey Lushnikov <lushnikov@chromium.org> Commit-Queue: Erik Luo <luoe@chromium.org> Cr-Commit-Position: refs/heads/master@{#530662}
-
Steven Bennetts authored
This adds a parameter to ConnectToNetwork 'succeed_on_send_connect'. If set, ConnectToNetwork will call the 'success' callback as soon as a connect request is sent to Shill (if there were no configuration errors) instead of after the connect succeeds. This is used by the networkingPrivate implementation to more correctly implement the API. This CL causes the Settings based network config UI to close its dialog when the connection starts. Bug: 795715 For minor changes to comonents/arc/net: TBR=hidehiko@chromium.org Change-Id: I5de65a32a46d57dc628c65542a275505d4d7c944 Reviewed-on: https://chromium-review.googlesource.com/875002Reviewed-by:
Toni Barzic <tbarzic@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Cr-Commit-Position: refs/heads/master@{#530661}
-
Tao Bai authored
Cancel the previous autofill session until the new autofill session is triggered. We don't cancel the autofill session when WebView navigates to the new page now. This should also improve the detection of form submission. Bug: 791182 Change-Id: I883b322f921ef29221995681ad07044d35bfb76d Reviewed-on: https://chromium-review.googlesource.com/876507Reviewed-by:
Changwan Ryu <changwan@chromium.org> Commit-Queue: Tao Bai <michaelbai@chromium.org> Cr-Commit-Position: refs/heads/master@{#530660}
-
David Tseng authored
Bug: 803888 Change-Id: Ia818b0ac6454d52dc51bea997d0ec814ee4905e9 Reviewed-on: https://chromium-review.googlesource.com/868505Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#530659}
-
Mitsuru Oshima authored
BUG=749713 TEST=manual Change-Id: I05908a8761336bf6bb8daf24e40201536ab16c40 Reviewed-on: https://chromium-review.googlesource.com/876940Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Commit-Queue: Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#530658}
-
Qiang Xu authored
Bug: none Test: still compiles Change-Id: Ie57ac85850a2dc2fa6985b216a77c339658f472a Reviewed-on: https://chromium-review.googlesource.com/876492Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Qiang(Joe) Xu <warx@chromium.org> Cr-Commit-Position: refs/heads/master@{#530657}
-
Mike Reed authored
Bug: Skia:7500 Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel Change-Id: Ie5ed5ad7c4baeec95bad0710e156f6eb9008e95b Reviewed-on: https://chromium-review.googlesource.com/876444Reviewed-by:
weiliangc <weiliangc@chromium.org> Reviewed-by:
Florin Malita <fmalita@chromium.org> Commit-Queue: Mike Reed <reed@chromium.org> Cr-Commit-Position: refs/heads/master@{#530656}
-
Marijn Kruisselbrink authored
This paves the way for getting rid of TYPE_BLOB elements (or at least not having to reintroduce TYPE_BLOB when BlobDataItem is updated to no longer depend on network::DataElement). TBR=kinuko@chromium.org Bug: 803585 Change-Id: I344b7a16a1686059a2b4058cc46711444f96f8f5 Reviewed-on: https://chromium-review.googlesource.com/876527 Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Cr-Commit-Position: refs/heads/master@{#530655}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/b1b80f7de422..16d0ad06b468 $ git log b1b80f7de..16d0ad06b --date=short --no-merges --format='%ad %ae %s' 2018-01-19 fmalita [skottie,sksg] Improved shape group semantics 2018-01-19 reed use GrFPArgs for maskfilters 2018-01-19 robertphillips Move more internal methods from GrContext to GrContextPriv (take 2) 2018-01-19 robertphillips Add explicit abandoned flag to the GrProxyProvider 2018-01-19 egdaniel Add Android_API26 bot to CQ 2018-01-17 reed drawimage + maskfilter bug fix 2018-01-19 robertphillips Split GrContext into Normal/DDL flavors 2018-01-19 reed check for crazy bounds from fuzzer 2018-01-19 halcanary Revert "Move more internal methods from GrContext to GrContextPriv" 2018-01-19 halcanary SkQP: use bitmap.pixmap() 2018-01-19 robertphillips Move more internal methods from GrContext to GrContextPriv 2018-01-19 reed make rrect's more self-consistent, check drawable index 2018-01-19 scroggo Stop defining SK_CODEC_PRINTF in debug 2018-01-18 csmartdalton ccpr: Blacklist vertex shaders on ANGLE/Skylake 2018-01-19 reed rename inner AsFPArgs to stand-alone GrFPArgs 2018-01-19 egdaniel Delete SkColorSpaceXformImageGenerator and SkImagePriv::SkMakeImageInColorSpace 2018-01-19 hcm Update Skia milestone to 66 2018-01-19 brianosman Add more asserts about MSAA render buffers and FBO 0 Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org 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=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=halcanary@chromium.org Change-Id: I8e84eb4eb8c40e79498172ce3c7c56d6c576d8b6 Reviewed-on: https://chromium-review.googlesource.com/876768 Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#530654}
-