- 10 May, 2019 37 commits
-
-
Ryan Sturm authored
This metric is intended to be used to compare experiments effect on user battery. It is not useful outside of experimental comparison, as other apps can easily affect this. Bug: 958176 Change-Id: I1604af419c3912521ad89ba0c185305ffc393cd6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1592340 Commit-Queue: Ryan Sturm <ryansturm@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Reviewed-by:
Tarun Bansal <tbansal@chromium.org> Cr-Commit-Position: refs/heads/master@{#658381}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/e4605daf9407..3e511440e774 git log e4605daf9407..3e511440e774 --date=short --no-merges --format='%ad %ae %s' 2019-05-09 chrisforbes@google.com Remove UNIMPLEMENTED on unsupported features 2019-05-09 chrisforbes@google.com Accept OpExtension SPV_KHR_variable_pointers 2019-05-09 chrisforbes@google.com BufferView has id in shared space with ImageViews 2019-05-09 sugoi@google.com Allow 3d <-> 2d image copies Created with: gclient setdep -r src/third_party/swiftshader@3e511440e774 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 BUG=chromium:b/130937460 TBR=swiftshader-team+autoroll@google.com Change-Id: Id9ab4286f36076197a59c98bc39112f6c3777221 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603782Reviewed-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@{#658380}
-
Yuke Liao authored
This CL works around the issue that layout test results merger script tries to use the profdata directory (CWD) as output directry and wipes out the content of that directory. Bug: 960994 Change-Id: I1ca5383d9eb19aba6799cf19d0d5d95c2af82c9b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602332Reviewed-by:
Roberto Carrillo <robertocn@chromium.org> Commit-Queue: Yuke Liao <liaoyuke@chromium.org> Cr-Commit-Position: refs/heads/master@{#658379}
-
Joe DeBlasio authored
This CL modifies the DownloadTargetDeterminer state machine to add a call out to its delegate to check whether the download should be blocked. This happens immediately after initial download path is determined, but before the user might be prompted. This will eventually be used to block downloads as active mixed content. Bug: 960819 Change-Id: I9a90dd811c97808d229a98e4a4fcf74feb4d0396 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1590412Reviewed-by:
Min Qin <qinmin@chromium.org> Reviewed-by:
Emily Stark <estark@chromium.org> Commit-Queue: Joe DeBlasio <jdeblasio@chromium.org> Cr-Commit-Position: refs/heads/master@{#658378}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/2cf3aa8e54db..09537e93fddd git log 2cf3aa8e54db..09537e93fddd --date=short --no-merges --format='%ad %ae %s' 2019-05-09 perezju@chromium.org [Telemetry] Remove old browser_info methods Created with: gclient setdep -r src/third_party/catapult@09537e93fddd The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:921000 TBR=charliea@google.com Change-Id: I4d54774de69f05f2951bf449bc1540627dda80c9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603144Reviewed-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@{#658377}
-
Antonio Gomes authored
This is a first step to OnionSoup content/renderer/media_capture_from_element/. It summary, this CL - Moves content/renderer/media_capture_from_element/canvas_capture_handler* to third_party/blink/renderer/modules/mediacapturefromelement/. - Adapts the existing code for Blink restrictions, eg use WTF::Bind instead of base::Bind. - Removes the code that used to plumb the creation of content::CanvasCaptureHandler instances through blink::Platform, and make blink::HTMLCanvasElementCapture to create it (see the second TODO below). To be done (follow up CLs): - migrate some remaining base::Bind{Once,Repeating} uses to the respective Blink/WTF alternatives. This is now blocked on having a CrossThreadBindOnce implementation available (see crrev.com/c/1597228). - eliminate blink::WebCanvasCaptureHandler third_party/blink/public/platform/web_canvas_capture_handler.h. Note that this is not done now because there is code in third_party/blink/renderer/core/html/canvas/canvas_draw_listener.cc|h that use blink::WebCanvasCaptureHandler, and can not use blink::CanvasCaptureHandler directly, because core/ can not depend on modules/. R=kentaro@chromium.org, guidou@chromium.org BUG=787261 Change-Id: Id2dc1f6441e2568c8420f0849a2cb5f87f9a6d75 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1600898Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#658376}
-
James Cook authored
The conversion from ARC to native assistant left some dead code in settings. Bug: 960937 Test: turned assistant feature flag on and off in about:flags Change-Id: Icb4b03aee055cfffbd9118c56661c6431debac65 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602658Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Reviewed-by:
Yue Li <updowndota@chromium.org> Commit-Queue: James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#658375}
-
Kenichi Ishibashi authored
This experiment uses a variation parameter to control how V8 code cache is generated for service worker scripts. We need to put the value of the parameter explicitly. Bug: 915081 Change-Id: Ie9cb565e3ad09396de5d125a46b9b5db755bbb14 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1597494 Auto-Submit: Kenichi Ishibashi <bashi@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Commit-Queue: Kenichi Ishibashi <bashi@chromium.org> Cr-Commit-Position: refs/heads/master@{#658374}
-
Mei Liang authored
This CL adds a closing tab behavior when TabGroupAndroid is enabled. Close the app when closing the last normal tab in Chrome using TabGroupUi. Bug: 960196 Change-Id: Iad35c0dc885f7cc2bb30848ce7199912ceadaedc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1598231Reviewed-by:
Yusuf Ozuysal <yusufo@chromium.org> Commit-Queue: Mei Liang <meiliang@chromium.org> Cr-Commit-Position: refs/heads/master@{#658373}
-
sczs authored
- Creates Mobile.Messages.Modal.Event for all generic Infobar Modal events. These will be used by the generic InfobarMetricsRecorder - Creates Mobile.Messages.Passwords.Modal.Event for all password specific Infobar Modal events, along with a Mobile.Messages.Password.Type suffix. - The previous Histogram will be used by a new class PasswordInfobarMetricsRecorder. - Logs InfobarModal metrics mostly from InfobarPasswordTableVC and some from its Coordinator since they need presenting context. Bug: 945478, 911864 Change-Id: Id53c47c884c9c2e0e52e10fae27dbe0f864d9eac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1598331 Commit-Queue: Sergio Collazos <sczs@chromium.org> Reviewed-by:
Peter Lee <pkl@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Cr-Commit-Position: refs/heads/master@{#658372}
-
Bailey Berro authored
- Adds AutomaticUsbPrinterConfigurer to CupsPrintersManager - AUPC installs automatic usb printers as they are added Bug: 951135 Change-Id: Ib06441e8574b4fd64deef250a6c3bc152cee11af Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1594690 Commit-Queue: Bailey Berro <baileyberro@chromium.org> Reviewed-by:
Zentaro Kavanagh <zentaro@chromium.org> Cr-Commit-Position: refs/heads/master@{#658371}
-
Antonio Gomes authored
This CL factor IOTaskRunnerTestingPlatformSupport out of modules/mediastream/media_stream_video_capturer_source_test.cc into a helper class/file platform/testing/io_task_runner_testing_platform_support.cc|h. This allows it to be reusable. This is a preparation CL for crrev.com/c/1600898. R=haraken@chromium.org,guidou@chromium.org BUG=787261 Change-Id: I2d5a11d4a93c19b27dc4290d025be10a9502c890 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602593Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#658370}
-
rbpotter authored
Change downloads to use the same approach as settings, extensions, and print preview: (1) Use an individual grd file instead of browser_resources.grd (2) Create unpak folder Bug: 715296 Change-Id: Ifd0ce1c46e11ad80ee17fa8c5e55aab33543bfa1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1598320Reviewed-by:
Lei Zhang <thestig@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Rebekah Potter <rbpotter@chromium.org> Cr-Commit-Position: refs/heads/master@{#658369}
-
Alex Moshchuk authored
Previously, with strict origin isolation, we computed the site URL as the URL's full origin whenever the URL's origin had a host (and was not a file URL). This also incorrectly triggered for effective URLs, such as chrome-extension://hosted_app_id/, where returning the origin right away skipped some essential logic below that appended the non-translated site URL to the site URL's hash. That led to not being able to swap processes on cross-site transitions within hosted apps. Fix this by restricting strict origin isolation to only affect HTTP/HTTPS URLs. Bug: 961386 Change-Id: I224cfe4df23ec55a0429c626fd6f439da1ef3041 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603745Reviewed-by:
Charlie Reis <creis@chromium.org> Commit-Queue: Alex Moshchuk <alexmos@chromium.org> Cr-Commit-Position: refs/heads/master@{#658368}
-
Kristi Park authored
getTilesPerRow_() only checked the grid's maximum number of tiles per row when detecting if the tiles needed to be rebalanced. Therefore, if the window's maximum tiles per row was less, the tiles were not rebalanced. Use the lesser of the two maximums when detecting if the tiles need to be rebalanced. Screencast: https://drive.google.com/open?id=19amLd8JRyzLSzBeA4Ypt7PIZYlaqhaIz Bug: 961203 Change-Id: I3200a043b40b3282a61a7512e00e6b6ae4ebbd15 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603209 Commit-Queue: Kristi Park <kristipark@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Cr-Commit-Position: refs/heads/master@{#658367}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/2e48312247a8..1b52d87ab536 git log 2e48312247a8..1b52d87ab536 --date=short --no-merges --format='%ad %ae %s' 2019-05-09 ehmaldonado@chromium.org Reland "git-cl: Keep git push traces" Created with: gclient setdep -r src/third_party/depot_tools@1b52d87ab536 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:955206 TBR=agable@chromium.org Change-Id: I7ccb7132cb4df67eedaa488c98159e38241d54e0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603922Reviewed-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@{#658366}
-
chromium-autoroll authored
The AutoRoll server is located here: https://autoroll.skia.org/r/fuchsia-sdk-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:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast TBR=cr-fuchsia+bot@chromium.org Change-Id: I2a84e59b407e4700d9d76fd71493e6d49f5da995 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1604246Reviewed-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@{#658365}
-
Brandon Wylie authored
Large rebase mistakes left some cruft in the code, cleaning that up. TBR=yfriedman@chromium.org Bug: 938050 Change-Id: I264807dcc12aa69397ef5ddf56db5236ade0bf0d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603524 Commit-Queue: Brandon Wylie <wylieb@chromium.org> Reviewed-by:
Pavel Yatsuk <pavely@chromium.org> Cr-Commit-Position: refs/heads/master@{#658364}
-
Sinan Sahin authored
Bug: 958491 Change-Id: I03277ad2839d3707decb63804a876efea2c95a92 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1604044Reviewed-by:
Becky Zhou <huayinz@chromium.org> Commit-Queue: Sinan Sahin <sinansahin@google.com> Cr-Commit-Position: refs/heads/master@{#658363}
-
Nigel Tao authored
These variables have type "AppListSyncableService*" but were named "app_service". More recently, there is now a separate concept called "the App Service": https://chromium.googlesource.com/chromium/src/+/HEAD/chrome/services/app_service/README.md Upcoming commits will integrate chrome/browser/ui/ash code with the App Service. To avoid confusion, we first rename these "app_service" variables to "syncable_service". Change-Id: Idd69ac61d3dee9570ecc8ed368b5fa255e547821 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1600927Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Nigel Tao <nigeltao@chromium.org> Cr-Commit-Position: refs/heads/master@{#658362}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/cb68382c9842..f86c9af41fc7 Created with: gclient setdep -r src-internal@f86c9af41fc7 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=dvadym@google.com,noel@google.com,jbroman@google.com,xialinyan@google.com Change-Id: Ib3db5114371100abd8b11e774cb1280c072f92f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603750Reviewed-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@{#658361}
-
Dan Zhang authored
https://quiche.googlesource.com/quiche.git/+log/ff86db3f4a3d..7eef071bd3d6 $ git log ff86db3f4..7eef071bd --date=short --no-merges --format='%ad %ae %s' 2019-05-09 quiche-dev Change SendOrQueueMessage to take a QuicMemSliceSpan. 2019-05-09 fayang gfe-relnote: In QUIC, factor out ProcessVersionLabel and ValidateIetfConnectionIdLength functions. No functional change expected, not protected. 2019-05-09 fayang gfe-relnote: In QUIC, stop setting and restoring framer's version in QuicDispatcher::StatelesslyTerminateConnection as terminator now have its own framer. Not protected as this is no-op change. 2019-05-09 ianswett Re-enable QuicConnectionTest::AckNeedsRetransmittableFrames when multiple packet number spaces are used by setting the encryption level. 2019-05-09 danzh gfe-relnote: n/a(code clean up) Clean up #include in quic proof_source and proof_verifier. 2019-05-08 renjietang Allow QuicStream constructor to take parameter on static-ness when constructing from PendingStream. 2019-05-08 dschinazi Make QUIC server set fixed bit in version negotiation packets 2019-05-08 bnc Fix QpackRoundTripFuzzer when cookies are split along '\0'. 2019-05-08 renjietang Add APIs to allow sessions to read stream types from pending stream. 2019-05-08 nharper gfe-relnote: Remove client-side support for Channel ID from QUIC. Not flag protected. Created with: roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src R=rch@chromium.org Change-Id: I5b14616ed27a9a5294825a9646e1e0ec338b2b16 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603184Reviewed-by:
Steve Anton <steveanton@chromium.org> Reviewed-by:
Ryan Hamilton <rch@chromium.org> Commit-Queue: Dan Zhang <danzh@chromium.org> Cr-Commit-Position: refs/heads/master@{#658360}
-
Maggie Cai authored
Currently the storage data is send to and from the web ui using int, however when the size gets over 2GB, it will overflow and crash the browser. This CL convert the data into double and adds unit test for large storage data. BUG=960726,943735 Change-Id: I085410fdd3da1674a0b44d1a445927b015219f47 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602234Reviewed-by:
Joshua Bell <jsbell@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Maggie Cai <mxcai@chromium.org> Cr-Commit-Position: refs/heads/master@{#658359}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/77f9a12a3f08..4585cc846e0f git log 77f9a12a3f08..4585cc846e0f --date=short --no-merges --format='%ad %ae %s' 2019-05-09 fmayer@google.com Merge "Add CHANGELOG for heapprofd." Created with: gclient setdep -r src/third_party/perfetto@4585cc846e0f 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: I5b8738b12467264d3683487757c50b431fd6560d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603749Reviewed-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@{#658358}
-
Scott Violet authored
ui/views/mus is going away, which means remote-view is about to be removed. BUG=958241 TEST=covered by tests Change-Id: I7e82de5838e7c98fb161d2aa9c4620f0b6d917f4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603743Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Ken Rockot <rockot@google.com> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#658357}
-
Nigel Tao authored
Before this commit, all AppListSyncableServiceTest.* unit tests pass with AppServiceAsh disabled, but fail with it enabled. After this commit, all AppListSyncableServiceTest.* unit tests pass, with AppServiceAsh disabled or enabled. The App Service listens for extensions being installed, not just added. Also remove some test EXPECT's that were checking a transient state, which are implementation details. That transient state was no longer reached, once RunUntilIdle calls were added to keep App Service's Mojo IPCs moving along. BUG=826982 Change-Id: I1e14f3a87316003309641c3a86d59dfb666bb8dd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1593886Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Nigel Tao <nigeltao@chromium.org> Cr-Commit-Position: refs/heads/master@{#658356}
-
David Staessens authored
This CL adds support for resolution switching test videos to the new video decoder tests. This only requires adding a trivial implemention for the DismissPictureBuffer function. TEST=ran new VDA tests on eve BUG=934065 Change-Id: Ibf31098852f863cae30396a9a969150465ae3982 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1583024Reviewed-by:
Hirokazu Honda <hiroh@chromium.org> Commit-Queue: David Staessens <dstaessens@chromium.org> Cr-Commit-Position: refs/heads/master@{#658355}
-
Lucas Tenório authored
This flow is triggered at the end of the OOBE/Login for supervised accounts. It will show a series of pages that will be fetched from families.google.com and displayed in a webview. This flow will be triggered from a custom WebUI in the future, so we also add a common mojo interface that can be used in both WebUIs. For more context about this flow, see the documents linked in the bug. Added as reviewers: - sky@ for chrome/app/BUILD.gn - alemate@ for chromeos/login - stevenjb@ for chromeos/supervision - kerrnel for mojom and chrome/app/*_manifest.cc Bug: 958995 Change-Id: I8dc11d6a1d9c645cbaaeac18013d81f73f9add31 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1599924Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Greg Kerr <kerrnel@chromium.org> Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Lucas Tenório <ltenorio@chromium.org> Cr-Commit-Position: refs/heads/master@{#658354}
-
Andrew Grieve authored
SequenceTaskRunner no longer require lifetime checks. Bug: 877963 Change-Id: I6d779e47b4ded24f38f6a9c29aaddda102a13bbe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602152Reviewed-by:
Sam Maier <smaier@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Commit-Queue: Andrew Grieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#658353}
-
Tommy C. Li authored
Update the comment to reflect that fact that this flag is already launched on Desktop and under development on Android. Bug: NONE Change-Id: I6ba24f9db7533597c36cf7cf52ee3aff3d30195e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603828Reviewed-by:
Orin Jaworski <orinj@chromium.org> Commit-Queue: Tommy Li <tommycli@chromium.org> Cr-Commit-Position: refs/heads/master@{#658352}
-
Steven Bennetts authored
The mismatch was causing the internet details dialog to fail to load when DCHECK is enabled. This also updates the networking_private.js exports which was rather out of date. Bug: 957123 Change-Id: Ib42d4cc37fa4ea75ce917be0959d64b3d6daba7d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603494Reviewed-by:
Toni Baržić <tbarzic@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Cr-Commit-Position: refs/heads/master@{#658351}
-
Kyle Horimoto authored
This makes it clear that this property applies only to Tether networks and should not be confused with DeviceState::operator_name(), which is the name of the carrier used for Cellular networks. Change-Id: I1c9398e24961aa8a569a07ea3970678b4c5b0408 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603746 Auto-Submit: Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#658350}
-
Jonathan Metzman authored
Bug: 960422 Change-Id: Id239f4a5dbe49882864c405fb092b615f8b7cf5c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602875 Commit-Queue: Jonathan Metzman <metzman@chromium.org> Auto-Submit: Jonathan Metzman <metzman@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Reviewed-by:
Varun Khaneja <vakh@chromium.org> Cr-Commit-Position: refs/heads/master@{#658349}
-
Jinsuk Kim authored
Replaces a default chrome icon with favicon for the pages being opened on Ephemeral Tab. Didn't chose to use FaviconHelper.java to avoid unnecessary conversion from SkBitmap -> JavaBitmap -> SkBitmap. Bug: 929727 Change-Id: Ide1698470b052b2914dd490a0d40ce175989c651 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1601015Reviewed-by:
Matthew Jones <mdjones@chromium.org> Reviewed-by:
Donn Denman <donnd@chromium.org> Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Cr-Commit-Position: refs/heads/master@{#658348}
-
Christopher Grant authored
When enabled, this change will package the VR native library in the VR DFM. Also, introduce a .gni that computes whether native libraries in modules is enabled as a whole (not VR specific). Bug: 921663 Change-Id: Iacf09c46393daf924059217b3c7b335822cedef6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1601535 Commit-Queue: Christopher Grant <cjgrant@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Reviewed-by:
Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#658347}
-
Karan Bhatia authored
This CL adds metrics to record which response headers are added, removed and modified using the Web Request API. Also, the existing histograms Extensions.WebRequest.SetCookieResponseHeaderChanged and Extensions.WebRequest.SetCookieResponseHeaderRemoved, which are already expired; are marked obsolete and their tests re-purposed for the new histograms. BUG=953956, 904568, 827582 Change-Id: I9da081df1732d577476168d1ee1855fccfe8c198 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1591491 Commit-Queue: Karan Bhatia <karandeepb@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#658346}
-
Dale Curtis authored
This reverts commit c2f89e17. Reason for revert: Broke waterfall. == '.webm' is invalid. Original change's description: > Switch to using vp9-lossless for VideoEncodeAccelerator test files. > > These raw files were large and are slowing down the fuzzer process; > this saves 13,416,948 bytes. I've confirmed via MD5 hashes that > the decode path and the yuv path generate the same output data. > > BUG=960139 > TEST=verify MD5 hashes between compressed and uncompressed variables. > R=hiroh, inferno > > Change-Id: If5140a2d1c98cb0f973adff1a10cdb5c4c36cd55 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1595430 > Commit-Queue: Dale Curtis <dalecurtis@chromium.org> > Reviewed-by: Hirokazu Honda <hiroh@chromium.org> > Cr-Commit-Position: refs/heads/master@{#658340} TBR=dalecurtis@chromium.org,inferno@chromium.org,hiroh@chromium.org Change-Id: Icd24426ea2d51fc487f10b932f2cd3cca9618468 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 960139 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1604053Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#658345}
-
- 09 May, 2019 3 commits
-
-
Daniel Cheng authored
Bug: 958675 Change-Id: Ica6b5bab7849f227567d8016354a39383533799f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1595585 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#658344}
-
chromium-autoroll authored
https://chromium.googlesource.com/external/github.com/google/shaderc/+log/5cf297dfa77c..dce7a4bc30c0 git log 5cf297dfa77c..dce7a4bc30c0 --date=short --no-merges --format='%ad %ae %s' 2019-05-09 dneto@google.com Roll glslang, spirv-tools, spirv-headers, spirv-cross (#614) Created with: gclient setdep -r src/third_party/shaderc/src@dce7a4bc30c0 The AutoRoll server is located here: https://autoroll.skia.org/r/shaderc-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=radial-bots+chrome-roll@google.com Change-Id: I555c27cb351a9cb46327963bcd8383ce434a9879 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603785Reviewed-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@{#658343}
-
Daniel Rubery authored
The mitigation previously in place for https://crbug.com/919709 isn't sufficient in preventing long-tail ZIP analysis from taking a long time. So this CL lowers the size limit for detailed ZIP unpacking. We will roll this out by a Component Update, then restore to the old limit for M75. Bug: 959628 Change-Id: Iae254bfc8cd78aac977f9751c3664407ac6282b0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1599877Reviewed-by:
Varun Khaneja <vakh@chromium.org> Commit-Queue: Varun Khaneja <vakh@chromium.org> Cr-Commit-Position: refs/heads/master@{#658342}
-