- 28 Feb, 2019 40 commits
-
-
Tommy Steimel authored
This CL re-adds logic to log MediaLauncherActivity in the WebappCustomTabTimeSpentLogger. This was accidentally removed in a rebase. Bug: 935777 Change-Id: Ifa553184ab3e598cd3c0787eead8845a3b4c0695 Reviewed-on: https://chromium-review.googlesource.com/c/1493441Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Commit-Queue: Tommy Steimel <steimel@chromium.org> Cr-Commit-Position: refs/heads/master@{#636483}
-
Michael Lippautz authored
As a drive-by return a tuple of string and flag for an object's name to easily figure out wheter the object should be considered internal or not. Bug: 936797 Change-Id: Icd6efc709b46b48ac6944d3b814ffa72906b55e0 Reviewed-on: https://chromium-review.googlesource.com/c/1493911 Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#636482}
-
Koji Ishii authored
This patch copies the logic to check ShouldPaintDescendantOutlines from BlockPainter::PaintBlockFlowContents(). Before this change, PaintPhase::kOutline and kDescendantOutlinesOnly painted all descendants. With this change, they paint LayoutInline descendants only, matching to the legacy behavior. The difference was observed in fast/block/float/float-in-float-painting.html. Bug: 936024 Change-Id: I8f0d985b7ced9f8e1295bdb4e4a0f3763551b2c6 Reviewed-on: https://chromium-review.googlesource.com/c/1495134Reviewed-by:
Emil A Eklund <eae@chromium.org> Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Commit-Queue: Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#636481}
-
Becky Zhou authored
Bug: 936275 Change-Id: Icb58cda11379b0bc5f149aafbd84bacbc8a015c2 Reviewed-on: https://chromium-review.googlesource.com/c/1493071Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Becky Zhou <huayinz@chromium.org> Cr-Commit-Position: refs/heads/master@{#636480}
-
Roger Tawa authored
Bug: 936587 Change-Id: I9cdf7d8eca4862aeaa6aebb6266b51aa0dfc6777 Reviewed-on: https://chromium-review.googlesource.com/c/1492045Reviewed-by:
Owen Min <zmin@chromium.org> Commit-Queue: Roger Tawa <rogerta@chromium.org> Cr-Commit-Position: refs/heads/master@{#636479}
-
Luum Habtemariam authored
ipp_converter::ConvertIppToMojo does not take ownership of the passed in ipp_t*; this change reflects that. Bug: None Test: unitests still pass Change-Id: I19cbdb084175a57ab533cd63099d54acae624c2b Reviewed-on: https://chromium-review.googlesource.com/c/1493206Reviewed-by:
Sean Kau <skau@chromium.org> Commit-Queue: Luum Habtemariam <luum@chromium.org> Cr-Commit-Position: refs/heads/master@{#636478}
-
Luum Habtemariam authored
Now correctly failing on unrecognized tag_types. Keeping ipp_t objs wrapped in printing::ScopedIppPtr objs throughout fuzzing. Bug: chromium:936435 Test: Reproducible test case no longer fails. Change-Id: I13fd72834fb971e5fc9fc28541c28b7a293a41d0 Reviewed-on: https://chromium-review.googlesource.com/c/1492572 Auto-Submit: Luum Habtemariam <luum@chromium.org> Reviewed-by:
Sean Kau <skau@chromium.org> Commit-Queue: Luum Habtemariam <luum@chromium.org> Cr-Commit-Position: refs/heads/master@{#636477}
-
Chris Harrelson authored
This reverts commit e7db3d02. Reason for revert: caused several regressions. Bug:936798,936652,936763 Original change's description: > Re-land: [BGPT] Support kDstIn blend-mode for non-render surface quads > > This reverts commit 0d564c1d. > > It is a re-land of the original patch, with a fix to support the > AA quad rendering path in GLRenderer. > > Bug: 936087 > > Change-Id: I1e7d19051d891a20f902704bebf78ca45145751f > Reviewed-on: https://chromium-review.googlesource.com/c/1489899 > Commit-Queue: Chris Harrelson <chrishtr@chromium.org> > Reviewed-by: enne <enne@chromium.org> > Cr-Commit-Position: refs/heads/master@{#636148} TBR=chrishtr@chromium.org,enne@chromium.org Change-Id: I8d85d23362a7c2f69e03c8b7a031aa436b33b40d No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 936087 Reviewed-on: https://chromium-review.googlesource.com/c/1495039Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Cr-Commit-Position: refs/heads/master@{#636476}
-
Yi Gu authored
The README is outdated. Changes in this patch: 1. Updating some "Animation" to "KeyframeModel" for correctness 2. Adding newly implemented classes to README Bug: 930130 Change-Id: Ie209090ed375a0547de2dddd376063090b7a37bf Reviewed-on: https://chromium-review.googlesource.com/c/1460861 Commit-Queue: Yi Gu <yigu@chromium.org> Reviewed-by:
Stephen McGruer <smcgruer@chromium.org> Cr-Commit-Position: refs/heads/master@{#636475}
-
Gabriel Charette authored
This reverts commit d8a530f9. Reason for reland: initial CL had a bug when a native nested loop goes idle multiple times in a row. It needs to be able to reuse the existing native timer instead of assuming there isn't one (there won't be one the first time the native loop goes idle but there'll be one one all other idle phases unless we're out of delayed tasks). Original change's description: > Revert "[base] Migrate the Win MessagePump to DoSomeWork" > > This reverts commit 8c5fb8cb. > > Reason for revert: DCHECK(!installed_native_timer_); in dev builds > when moving and resizing windows. Seems interactive_ui_tests might > not cover those cases..? > > Original change's description: > > [base] Migrate the Win MessagePump to DoSomeWork > > > > This CL migrates both MessagePumpForUI and ForIO as they use the same > > base class and it's easier to do both at once. > > > > Tweaks to MessagePumpBase and/or both pumps: > > * Use DoSomeWork() instead of DoWork()/DoDelatedWork() > > * Replace |delayed_work_time_| by a timeout value computed on the stack > > from the result of DoSomeWork(). Conversely making > > ScheduleDelayedWork() a no-op as desired. > > * Refactor GetCurrentDelay() into GetSleepTimeoutMs() and use modern > > safe_conversions.h to perform the math. > > > > MessagePumpForUI specific tweaks: > > * Fixed crbug.com/929263: ::SetTimer() used 0 as an nIDEvent but > > ::KillTimer() used |this| so they weren't even interacting... > > * Fixed bug: even with the previous bug fixed. HandleTimerMessage() > > could be invoked while in a non-native DoRunLoop() (e.g. since > > KillTimer doesn't remove WM_TIMER messages already enqueued) and as > > such result in redundant sources of scheduling since it would then > > continue to RescheduleTimer() and confusing state for DoRunLoop()). > > * Ignore WM_TIMER messages which weren't scheduled by our ::SetTimer(). > > * Simplified usage of native ::SetTimer(). We now *only* rely on it > > when in a native nested loop and kill it immediately after to avoid > > double-scheduling. > > > > Note: MessageLoopTest.PostDelayedTask_SharedTimer_SubPump tests the > > necessity for a native timer when entering a native nested loop and > > confirms that the new behavior is WAI. > > > > Also adding regression tests for a tricky use case (and finding that > > it's already broken on ToT..!). Filed crbug.com/930940 to follow-up. (regression tests relanded separately in crrev.com/631918) > > > > Bug: 885371, 929263, 930940 > > Change-Id: I7f2d18a1a5a494c6a4f31fcc0fad9b4de25d70a7 > > Reviewed-on: https://chromium-review.googlesource.com/c/1455266 > > Reviewed-by: Alex Clarke <alexclarke@chromium.org> > > Reviewed-by: François Doray <fdoray@chromium.org> > > Commit-Queue: Gabriel Charette <gab@chromium.org> > > Auto-Submit: Gabriel Charette <gab@chromium.org> > > Cr-Commit-Position: refs/heads/master@{#631231} > > TBR=gab@chromium.org,fdoray@chromium.org,alexclarke@chromium.org > > # Not skipping CQ checks because original CL landed > 1 day ago. > > Bug: 885371, 929263, 930940 > Change-Id: Ic179d0493d01d4f44330927d9ccdb0f1454d2e78 > Reviewed-on: https://chromium-review.googlesource.com/c/1471254 > Reviewed-by: Gabriel Charette <gab@chromium.org> > Commit-Queue: Gabriel Charette <gab@chromium.org> > Cr-Commit-Position: refs/heads/master@{#631885} R=fdoray@chromium.org,alexclarke@chromium.org Bug: 885371, 929263, 931871 Change-Id: I10277d92cb780ba17dc5b9a359dc26b381e85ef4 Reviewed-on: https://chromium-review.googlesource.com/c/1471257 Commit-Queue: Gabriel Charette <gab@chromium.org> Auto-Submit: Gabriel Charette <gab@chromium.org> Reviewed-by:
Alex Clarke <alexclarke@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#636474}
-
Ioana Pandele authored
Add expectation for flaky external/wpt/fullscreen/api/element-request-fullscreen-and-remove-manual.html This test seems to be flaky on multiple bots. TBR=foolip@chromium.org Bug: 936827 Change-Id: Id91065f4df77d03721eed2e6f1ca17d2a5f17ac4 Reviewed-on: https://chromium-review.googlesource.com/c/1494875Reviewed-by:
Ioana Pandele <ioanap@chromium.org> Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Commit-Queue: Ioana Pandele <ioanap@chromium.org> Cr-Commit-Position: refs/heads/master@{#636473}
-
Lindsay Pasricha authored
We need to port matchers to ObjC in order to be accessible in EG2 to the Test and the App processes. Also created shell_matchers_shorthand.h/mm to minimize the changes to call sites. Bug: 930859 Change-Id: Ibff34f59962bac87fa50d48c1393451b63955271 Reviewed-on: https://chromium-review.googlesource.com/c/1494896 Commit-Queue: Lindsay Pasricha <lindsayw@chromium.org> Reviewed-by:
Justin Cohen <justincohen@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Cr-Commit-Position: refs/heads/master@{#636472}
-
Ella Ge authored
TBR: lukasza@chromium.org No-Try: true Bug: 835573 Change-Id: Idb6f7588e0953d838f15d2fb3395d7580ac3d0be Reviewed-on: https://chromium-review.googlesource.com/c/1495435Reviewed-by:
Ella Ge <eirage@chromium.org> Commit-Queue: Ella Ge <eirage@chromium.org> Cr-Commit-Position: refs/heads/master@{#636471}
-
Raymond Toy authored
A source node does not have pending activity if the context state is "closed". Previously we were checking that the context was basically being destructed, but since source nodes have a reference to the context, the context is still alive and can't yet be destroyed. Bug: 894322 Change-Id: I5b001e07069deab7ccf818b21b37f1652be53035 Reviewed-on: https://chromium-review.googlesource.com/c/1478074Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Commit-Queue: Raymond Toy <rtoy@chromium.org> Cr-Commit-Position: refs/heads/master@{#636470}
-
danakj authored
In order to do this move, change callers to SetBackgroundColor() to check if there is a local main frame, instead of checking for a null LayerTreeView. This means that when the main frame is remote, the compositor will (rightfully) stop being updated. But when a local main frame is attached the compositor must be updated. In the future this will be a new compositor attached to the LocalFrame. So we add a method to LocalFrameClient that is called for a local frame being attached to the Page, and have it inform the WebViewImpl. R=dcheng@chromium.org Bug: 912193 Change-Id: I9ff250d46d3a7e352f9a11ab8b892e2f464a99cb Reviewed-on: https://chromium-review.googlesource.com/c/1478258 Commit-Queue: danakj <danakj@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#636469}
-
Yoshifumi Inoue authored
This patch gets rid of redundant parameter |storage| from |NGInlineNode:: GetOffsetMapping()| as follow-up of CL[1] for improving code health. [1] http://crrev.com/c/1488479 Make LayoutBlockFlowRareData to hold NGOffsetMapping for legacy layout Change-Id: I265c7287f625a74bbf52be040e962c752a572fed Reviewed-on: https://chromium-review.googlesource.com/c/1488400 Commit-Queue: Koji Ishii <kojii@chromium.org> Reviewed-by:
Koji Ishii <kojii@chromium.org> Auto-Submit: Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#636468}
-
Kent Tamura authored
* caps-lock-indicator * -internal-media-cast-off-button * -internal-media-closed-captions-icon * -internal-media-download-button * -internal-media-overflow-button * -internal-media-overlay-cast-off-button * -internal-media-remoting-cast-icon * -internal-media-subtitles-icon * -internal-media-track-selection-checkmark They don't have style adjustment code, don't have painting code, and are not used in the UA stylesheets. Change-Id: I38adc95be356618e76374b68135bb7e03deb398f Bug: 936301 Reviewed-on: https://chromium-review.googlesource.com/c/1491233 Commit-Queue: Mounir Lamouri <mlamouri@chromium.org> Auto-Submit: Kent Tamura <tkent@chromium.org> Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Cr-Commit-Position: refs/heads/master@{#636467}
-
Kevin McNee authored
We divert touchscreen pinch events performed over an OOPIF to the root view, as only the root view can change page scale. It is also necessary for touchscreen gesture pinch events to occur within a gesture scroll sequence. This requires the diverted pinch events to be wrapped in a scroll sequence if the root does not otherwise have an ongoing scroll sequence. Currently, the pinch events are wrapped without considering scroll bubbling. If a scroll begin is bubbled to the root, but the corresponding pinch begin was diverted to the root and therefore another scroll begin was created to wrap it, then the root already has an ongoing scroll gesture and should not receive another GSB. Furthermore, once we have established that scroll is bubbling to the root, there is no longer any need to wrap the pinch in a scroll end, as the root will eventually receive a scroll end through bubbling. Bug: 897216, 923226 Change-Id: I4bb61c2d58ce9168a4c224f0e088d17b68d4a198 Reviewed-on: https://chromium-review.googlesource.com/c/1467242Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Reviewed-by:
James MacLean <wjmaclean@chromium.org> Commit-Queue: Kevin McNee <mcnee@chromium.org> Cr-Commit-Position: refs/heads/master@{#636466}
-
Peter Wen authored
All source files referenced in jni_headers is under chrome/android, so moving the target here to make it easier to edit when working under chrome/android. Bug: 935583 Change-Id: I2dd55db8df80c4e068c065076488938bec612084 Reviewed-on: https://chromium-review.googlesource.com/c/1492931 Commit-Queue: Peter Wen <wnwen@chromium.org> Auto-Submit: Peter Wen <wnwen@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/master@{#636465}
-
Stephane Zermatten authored
This patch extends ScrimView.ScrimParams to allow: - specifying a Drawable instead of just a color, to allow greater customization of the apparence - specifying an EventFilter, to allow some touch events to go through the scrim The goal is to refactor Autofill Assistant to use this view instead of a custom view, TouchEventFilterView. For background, see go/aa-bottomsheet Change-Id: I6bdaf0f6959e8bac03ba3a04ecfb1ce7f718b7e8 Bug: 933070 Reviewed-on: https://chromium-review.googlesource.com/c/1473230 Commit-Queue: Jordan Demeulenaere <jdemeulenaere@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Reviewed-by:
Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#636464}
-
Peter Wen authored
A single place to include all the base module/apk java deps. Bug: 846440 Change-Id: Ie1381cdb6ce5c413d6a6ee380ba6301b3f367245 Reviewed-on: https://chromium-review.googlesource.com/c/1494824 Auto-Submit: Peter Wen <wnwen@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Commit-Queue: Peter Wen <wnwen@chromium.org> Cr-Commit-Position: refs/heads/master@{#636463}
-
Jonathan Metzman authored
Speculative fix for UBSAN vptr build breakage. Bug: 936859 Change-Id: I8db59ddf0cc6bfc9b1bb6d15287cb6bd2eaafa42 Reviewed-on: https://chromium-review.googlesource.com/c/1494977Reviewed-by:
Max Moroz <mmoroz@chromium.org> Reviewed-by:
Sebastien Seguin-Gagnon <sebsg@chromium.org> Commit-Queue: Sebastien Seguin-Gagnon <sebsg@chromium.org> Cr-Commit-Position: refs/heads/master@{#636462}
-
Karolina Soltys authored
Bug: 863341 Change-Id: Id62135ec73a545c21a6c4ec7d173e540f6cc031f Reviewed-on: https://chromium-review.googlesource.com/c/1494657 Commit-Queue: Andrew Grieve <agrieve@chromium.org> Auto-Submit: Karolina Soltys <ksolt@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#636461}
-
Antonio Gomes authored
AxObjectCacheBase is the only direct subclass of AxObjectCache, so it is safe to unconditionally downcast from later to the former. This CL enforces that premise by making AxObjectCache's ctor private, and stating AxObjectCacheBase as a friend class of it. Additionally, the CL: - removes the macro-based cast helper ToAXObjectCacheBase from being used in t_p/blink/renderer/core/editing/finder/text_finder.cc, and uses implicit cast. - switches t_p/blink/renderer/core/exported/web_page_popup_impl.cc to use the newly added downcast trait helper. BUG=891908 Change-Id: Iab8f129b1bd330306b1761de58bc4b17ee2ed6a8 Reviewed-on: https://chromium-review.googlesource.com/c/1494677Reviewed-by:
Sergio Villar <svillar@igalia.com> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#636460}
-
Antonio Gomes authored
... now that all users got switched over to using the simple ctor instead. In other words, this CL eliminates IdentityTestEnvironment constructor that allows tests to pass backing objects (the one that takes compose signin:internals target) for IdentityTestEnvironment to construct IdentityManager from. Note that there is still complex IdentityTestEnvironment *private* constructors, but these are only accessible by IdentityTestEnvironment{Profile,ChromeBrowserState}Adaptor friend classes. BUG=928677 Change-Id: I962806b6061105ccb4795399f0cdd67aeaca03d3 Reviewed-on: https://chromium-review.googlesource.com/c/1494675Reviewed-by:
David Roger <droger@chromium.org> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#636459}
-
Bruce Long authored
As part of the work to support drag-and-drop of Outlook.exe emails and attachments to a Chromium drop target: https://chromium-review.googlesource.com/c/chromium/src/+/1487798/1 common code to get a unique file path was found. It was suggested in that code review that the implementation of the helper function GetUniquePath be put in a separate pull request. The helper is now used in three places that had the same logic depending on GetUniquePathNumber, and the helper will be also used in the change above. Bug: 322605 Change-Id: I4f6cbc676be64967af8e11e1c219722b144888dd Reviewed-on: https://chromium-review.googlesource.com/c/1490854Reviewed-by:
Lei Zhang <thestig@chromium.org> Reviewed-by:
Shakti Sahu <shaktisahu@chromium.org> Reviewed-by:
Darwin Huang <huangdarwin@chromium.org> Commit-Queue: Bruce Long <brlong@microsoft.com> Cr-Commit-Position: refs/heads/master@{#636458}
-
Michael Lippautz authored
ASW that are in construction should be ignored as their dispatch methods are not properly set up and they are kept alive via stack scan. Bug: 936817 Change-Id: I0398c319a3ba9e1454e33d97691caf07fe90a09b Reviewed-on: https://chromium-review.googlesource.com/c/1494874 Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Auto-Submit: Michael Lippautz <mlippautz@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#636457}
-
Mohamed Amir Yosef authored
Recent DCHECK failure in DCHECK enabled builds suggest that unexpected behavior takes place at initial merger where the bridge isn't aware of all the passwords in the login database. This CL remove the problematic DCHECK until the underlying cause is addressed. More details are in crbug.com/936823 Bug: 936823,933711 Change-Id: I5aa7340e0ebc144d845115764453407495d7249d Reviewed-on: https://chromium-review.googlesource.com/c/1494878 Commit-Queue: Mohamed Amir Yosef <mamir@chromium.org> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#636456}
-
Raymond Toy authored
If an AudioContext has been closed or suspended (via a call to close(), or suspend()), then set the pending activity to false, because nothing is happening on the context. Bug: 927731 Test: Change-Id: I9330921c9eac621349c1ff8b27324b55123ba815 Reviewed-on: https://chromium-review.googlesource.com/c/1490395 Commit-Queue: Raymond Toy <rtoy@chromium.org> Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Cr-Commit-Position: refs/heads/master@{#636455}
-
John Budorick authored
This reverts commit 7802af1d. Reason for revert: crbug.com/936336#c20 TBR=jbudorick@chromium.org,benmason@chromium.org Bug: 928422, 936336 Change-Id: Ia3864bd03f1284cd1daaac85929a082972c4dcc0 Reviewed-on: https://chromium-review.googlesource.com/c/1495037Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#636454}
-
Daniel Bratell authored
In an effort to reduce or even ban variable shadowing, this renames a couple of variables. I'm interested in prohibiting shadowing because I think it might prevent potential jumbo problems. The exact error this avoids is: third_party/blink/renderer/core/frame/frame_serializer.cc:301:12: error: declaration shadows a local variable [-Werror,-Wshadow] KURL url = ^ third_party/blink/renderer/core/frame/frame_serializer.cc:261:8: note: previous declaration is here KURL url = document.Url(); ^ third_party/blink/renderer/core/frame/frame_serializer.cc:307:14: error: declaration shadows a local variable [-Werror,-Wshadow] KURL url = input->Src(); ^ third_party/blink/renderer/core/frame/frame_serializer.cc:261:8: note: previous declaration is here KURL url = document.Url(); ^ third_party/blink/renderer/core/frame/frame_serializer.cc:313:14: error: declaration shadows a local variable [-Werror,-Wshadow] KURL url = ^ third_party/blink/renderer/core/frame/frame_serializer.cc:261:8: note: previous declaration is here KURL url = document.Url(); ^ third_party/blink/renderer/core/frame/local_frame_ukm_aggregator.cc:110:14: error: declaration shadows a local variable [-Werror,-Wshadow] String uma_name = uma_percentage_preamble; ^ third_party/blink/renderer/core/frame/local_frame_ukm_aggregator.cc:94:10: note: previous declaration is here auto uma_name = uma_preamble; ^ third_party/blink/renderer/core/frame/rotation_viewport_anchor.cc:52:21: error: declaration shadows a local variable [-Werror,-Wshadow] HitTestLocation location(point + point_offset); ^ third_party/blink/renderer/core/frame/rotation_viewport_anchor.cc:30:19: note: previous declaration is here HitTestLocation location(point); ^ Bug: 923510 Change-Id: I9bd46559f31e6b3fdb412cf7787b764ae84c775b Reviewed-on: https://chromium-review.googlesource.com/c/1494659 Commit-Queue: Daniel Bratell <bratell@opera.com> Commit-Queue: Fredrik Söderquist <fs@opera.com> Auto-Submit: Daniel Bratell <bratell@opera.com> Reviewed-by:
Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#636453}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/ef04c3c7..21541ca9 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I00019ec9aa11746cf419eeb616a5aef24967c3c0 Reviewed-on: https://chromium-review.googlesource.com/c/1494718Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#636452}
-
Antonio Gomes authored
BUG=890790 Change-Id: Ia0e9d5c2276676ecc5e4f551218ee1aecbb62d74 Reviewed-on: https://chromium-review.googlesource.com/c/1494515 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
David Roger <droger@chromium.org> Cr-Commit-Position: refs/heads/master@{#636451}
-
Sam Maier authored
This reverts commit 68320b85. Reason for revert: <INSERT REASONING HERE> Original change's description: > Android: ensuring onDestroy called between each test > > The previous onDestroy in tests change only blocked until onDestroy with certain > subclasses of ChromeActivityTestRule which called launchActivity. This change > blocks all tests on onDestroy. > > Bug: 908174 > Change-Id: I074054c28d002e012d0f6ebc95a53aadf4175eaa > Reviewed-on: https://chromium-review.googlesource.com/c/1473330 > Commit-Queue: Sam Maier <smaier@chromium.org> > Auto-Submit: Sam Maier <smaier@chromium.org> > Reviewed-by: Andrew Grieve <agrieve@chromium.org> > Cr-Commit-Position: refs/heads/master@{#636023} TBR=agrieve@chromium.org,smaier@chromium.org Change-Id: Idc5c2b186615b73cd4b6a49c29c29466cce30973 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 908174 Reviewed-on: https://chromium-review.googlesource.com/c/1494717 Commit-Queue: Sam Maier <smaier@chromium.org> Reviewed-by:
Sam Maier <smaier@chromium.org> Cr-Commit-Position: refs/heads/master@{#636450}
-
Marc Treib authored
Before this CL, SyncAuthManager's |last_auth_error_| member could be populated either by an error from Chrome's identity/token system, or by an error from the Sync server. This was confusing and inconsistent, since these errors have different lifetimes: An error from the Sync server should be cleared when Sync is shut down, but an error from the identity system should only be cleared on signout (and optimally, we wouldn't need to cache these errors at all). As a first step, this CL makes it so |last_auth_error_| only refers to errors from the identity system. Errors from the Sync server are instead generated on-the-fly, from already-existing information. Bug: 921553 Change-Id: I646ea21220e19849df96d771ed35f1b54e4fb0ec Reviewed-on: https://chromium-review.googlesource.com/c/1489232 Auto-Submit: Marc Treib <treib@chromium.org> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Commit-Queue: Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#636449}
-
Thomas Guilbert authored
This CL takes the newly split out InterfaceFactory::Create*Renderer methods and exposes them directly in the MojoRendererFactory. Classes that used to wrap the MojoRendererFactory and use its return values opaquely now have direct knowledge of the Mojo layer. FlingingRendererClientFactory is moved to content/ because it cannot depend on media/mojo. It also no longer needs to provide a |type_specific_id|. Bug: 936116 Change-Id: I37509c8c68c52dc6e2cb3488e2f41bed9c7b8396 Reviewed-on: https://chromium-review.googlesource.com/c/1489904 Commit-Queue: Thomas Guilbert <tguilbert@chromium.org> Reviewed-by:
Xiaohan Wang <xhwang@chromium.org> Cr-Commit-Position: refs/heads/master@{#636448}
-
Lucas Tenório authored
At the moment the Contained Shell launches any time its feature flag is enabled. But since we want users to toggle the experience from settings, we added a pref to control it. This change actually enforces this new pref by aways checking it when we try to launch the experience. Bug: 922687 Change-Id: Icf1ffa2422bbb68fda80e22f626d48bcbe8c8c18 Reviewed-on: https://chromium-review.googlesource.com/c/1477821 Commit-Queue: Lucas Tenório <ltenorio@chromium.org> Reviewed-by:
Mitsuru Oshima (OOO til 3/4) <oshima@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Cr-Commit-Position: refs/heads/master@{#636447}
-
Avi Drissman authored
mime_util does not take extensions with a leading dot, and if you pass in an extension with a leading dot, you will not successfully look up a mime type. BUG=84003 TEST=as in bug Change-Id: I37d9b0946df61a557b3423ae8a13ae447ed6c7c1 Reviewed-on: https://chromium-review.googlesource.com/c/1493473 Auto-Submit: Avi Drissman <avi@chromium.org> Reviewed-by:
Leonard Grey <lgrey@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#636446}
-
Abhijeet Kandalkar authored
This CL is a part of OnionSoup effort. It moves third_party/blink/public/mojom/color_chooser/color_chooser.mojom to third_party/blink/public/mojom/choosers/ and port other dependent files to refer to a new include path. Bug: 935938 Change-Id: I9dc107b6842a5ccdf5b116624ee7266923e07f50 Reviewed-on: https://chromium-review.googlesource.com/c/1488410 Commit-Queue: Abhijeet Kandalkar <abhijeet@igalia.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Sylvain Defresne <sdefresne@chromium.org> Cr-Commit-Position: refs/heads/master@{#636445}
-
Daniel Bratell authored
A unit test includes prefs_names.cc which in some builds caused duplicate symbol errors in linking. (I get a feeling we need a presubmit check for this because it has happened several times recently) TBR=gayane@chromium.org Bug: 931806 Change-Id: I942ba67f7570feed59b32694a55402db169e109c Reviewed-on: https://chromium-review.googlesource.com/c/1494884Reviewed-by:
Daniel Bratell <bratell@opera.com> Commit-Queue: Daniel Bratell <bratell@opera.com> Cr-Commit-Position: refs/heads/master@{#636444}
-