- 10 Aug, 2018 39 commits
-
-
Jordy Greenblatt authored
This Behavior will be used by the multidevice settings UI so it should live in a common area. Note that because some files in the folder are used by iOS9 which does not support newer js features, the convention is to use older syntax (such as var instead of let of const). Change-Id: I1bf8a8c99c20322fb43e4c0afe54caf853e5c37e Reviewed-on: https://chromium-review.googlesource.com/1170091Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Jordy Greenblatt <jordynass@chromium.org> Cr-Commit-Position: refs/heads/master@{#582004}
-
Peter Collingbourne authored
This will allow ShellMainDelegate and TestShellMainDelegate to share an implementation of the browser subprocess later. Bug: 855193 Change-Id: Id4ef662bd96b606f19b4ecedda15a8a1bbed979b Reviewed-on: https://chromium-review.googlesource.com/1168647Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Commit-Queue: Peter Collingbourne <pcc@chromium.org> Cr-Commit-Position: refs/heads/master@{#582003}
-
Ned Nguyen authored
Bug:872931 Cq-Include-Trybots: master.tryserver.chromium.perf:obbs_fyi Change-Id: If55c6c7a688e3bc83ebbed972b4c046c1bdb3604 NOTRY=true # CQ flake Change-Id: If55c6c7a688e3bc83ebbed972b4c046c1bdb3604 Reviewed-on: https://chromium-review.googlesource.com/1170088 Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Stephen Martinis <martiniss@chromium.org> Cr-Commit-Position: refs/heads/master@{#582002}
-
Ted Choc authored
The issue was that when transitioning from a LTR URL to an empty textview the call to ApiCompatibilityUtils.isLayoutRtl(this) would return false in the initial scroll calculation and then true in the subsequent one. To work around this, we need to track the RTL-ness of the previous scroll to ensure it remains the same before we reuse the previous scroll offset. BUG=871147 Change-Id: I2440ffdd56c4ec9f95b01194e2e4f81f2f8bb572 Reviewed-on: https://chromium-review.googlesource.com/1169526Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/master@{#582001}
-
Becca Hughes authored
Update sound settings string from muted to mute as per spec. BUG=865548 Change-Id: Ib4a349627966995fc8abca36d10937d194f145ae Reviewed-on: https://chromium-review.googlesource.com/1156990Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Commit-Queue: Becca Hughes <beccahughes@chromium.org> Cr-Commit-Position: refs/heads/master@{#582000}
-
Khushal authored
Canvas2d uses cc's ImageDecodeCache in at-raster mode, which means the cache internally locks and unlocks images after every draw. If an image should be locked for the duration of a draw, it needs to be managed external to the cache. Avoiding the continous ref/un-ref churn was particularly important with GPU discardable. For this reason, canvas2d keeps images locked uptill a particular budget. The tracking for whether the budget has been exceeded is in the image cache and the information is passed to the CanvasImageProvider in DecodedDrawImage. This was resulting in the issue where for images which can directly be used in raster (bitmaps in sw case), the cache would always indicate them as budgeted so these images were not being released until the end of a canvas frame, causing OOM in certain cases. To fix the above, we could indicate these cases as unbudgeted from the cache but in that canvas the CanvasImageProvider drops all current decodes. The correct fix here would be to kill this locking of images in CanvasImageProvider and instead have the cc cache internally lock images uptill a budget for this use-case. But as a bandaid fix, this change makes it so we never hit the cache for these cases, and the CanvasImageProvider never locks these images if the ScopedDecodedDrawImage doesn't need to be unlocked. Bug: 872117 Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I48089d6aa3d1523a3c4d45821c7e307c6ee43c8c Reviewed-on: https://chromium-review.googlesource.com/1169902Reviewed-by:
enne <enne@chromium.org> Commit-Queue: Khushal <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/master@{#581999}
-
Wez authored
We previously attempted to include only the SOs listed in the primary executable's ELF headers as NEEDED. This causes SOs needed by other executables in the package to be missed, as well as any libraries used by the executable, but loaded via dlopen() rather than at load-time. Bug: 861931 Change-Id: If72d8007ca7d18674dd28eb310a0a5aa76519516 Reviewed-on: https://chromium-review.googlesource.com/1170179Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Commit-Queue: Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#581998}
-
Reilly Grant authored
This is a reland of daa348fa Original change's description: > Attach UsbContext to libusb_device(_handle) pointers > > This change modifies ScopedLibusbDeviceRef and adds a new class > ScopedLibusbDeviceHandle. This now explicitly own a reference to the > UsbContext object (which reference counts a libusb_context) in addition > to the libusb_device or libusb_device_handle they are wrapping. > > This resolves potential use-after-frees possible when posting tasks > with a ScopedLibusbDeviceRef since the UsbService the task is being > posted to could be destroyed before the task is executed. The > libusb_device would then be released after its libusb_context has been > destroyed. > > This is based on https://crrev.com/c/1131949 after I realized there > where additional issues that needed to be addressed. > > Bug: 838947 > Change-Id: Idee02828bf615bd477033e585fffe03cf4d20595 > Reviewed-on: https://chromium-review.googlesource.com/1145910 > Reviewed-by: Ken Rockot <rockot@chromium.org> > Commit-Queue: Reilly Grant <reillyg@chromium.org> > Cr-Commit-Position: refs/heads/master@{#577329} Bug: 838947 Change-Id: Ibb916b6dea86f05f0b6d2fdfa2d3b71f8c1e8c66 Reviewed-on: https://chromium-review.googlesource.com/1158770 Commit-Queue: Reilly Grant <reillyg@chromium.org> Reviewed-by:
Matt Reynolds <mattreynolds@chromium.org> Cr-Commit-Position: refs/heads/master@{#581997}
-
David Tseng authored
Bug: 842874,869576 Change-Id: I2cf585a3763a5685c39d30d7f7b35b232e2ed9bf Reviewed-on: https://chromium-review.googlesource.com/1162930 Commit-Queue: David Tseng <dtseng@chromium.org> Reviewed-by:
Nektarios Paisios <nektar@chromium.org> Cr-Commit-Position: refs/heads/master@{#581996}
-
Sammie Quon authored
When we reach one third of work area, stop shrinking the overview bounds and instead start sliding it out off screen. Test: added test Bug: 872141 Change-Id: I4d42e5943485c9a4d96205d1a1870823305b49e9 Reviewed-on: https://chromium-review.googlesource.com/1169974 Commit-Queue: Sammie Quon <sammiequon@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#581995}
-
Reilly Grant authored
This change unifies the HID input report handling on Windows with the existing logic on Linux and macOS where input reports are continuously read from the device and queued until a request is made to read them. This is necessary on Windows as well because the OS driver maintains a limited ring buffer of input reports and so if they are not read in a timely manner they will be discarded. This is a problem for protocols such as CTAP2 which break a larger message into multiple reports. Bug: 862207 Change-Id: I222e1cb2df8633e0bec77d9a64a9cf91760ba417 Reviewed-on: https://chromium-review.googlesource.com/1168153 Commit-Queue: Reilly Grant <reillyg@chromium.org> Reviewed-by:
Matt Reynolds <mattreynolds@chromium.org> Cr-Commit-Position: refs/heads/master@{#581994}
-
Scott Violet authored
BUG=none TEST=none Change-Id: I5c4566dff3707174b9d5193650e25bee1948631c Reviewed-on: https://chromium-review.googlesource.com/1170167Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#581993}
-
Weilun Shi authored
By setting the user select to none, when user double click the collection tile, the tile title will not highlighted. Bug: 869086 Change-Id: Ic3d567c47ad37b442805974fac0097d1f04f5539 Reviewed-on: https://chromium-review.googlesource.com/1170101 Commit-Queue: Weilun Shi <sweilun@chromium.org> Reviewed-by:
Kristi Park <kristipark@chromium.org> Cr-Commit-Position: refs/heads/master@{#581992}
-
Ned Nguyen authored
A big portion of perf data uploading latency is due to I/O operation (uploading), hence maximize the number of parallel processes to improve the wall-time. Bug:857283 Change-Id: I0c3246849676a56801fe99846ade7265d13d94c0 TBR=simonhatch@chromium.org Change-Id: I0c3246849676a56801fe99846ade7265d13d94c0 NOTRY=true # android_arm64_dbg_recipe flake Change-Id: I0c3246849676a56801fe99846ade7265d13d94c0 Reviewed-on: https://chromium-review.googlesource.com/1170083 Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Ned Nguyen <nednguyen@google.com> Reviewed-by:
Ethan Kuefner <eakuefner@chromium.org> Cr-Commit-Position: refs/heads/master@{#581991}
-
Mark Pearson authored
Bug: 871476 Change-Id: I2af8257c540c5b985b2f469f5c473427e6b51329 Reviewed-on: https://chromium-review.googlesource.com/1169947Reviewed-by:
Ilya Sherman <isherman@chromium.org> Commit-Queue: Mark Pearson <mpearson@chromium.org> Cr-Commit-Position: refs/heads/master@{#581990}
-
Steven Holte authored
Change-Id: I4475bc903028b12fdf5fec9b47878136bb8c879c Reviewed-on: https://chromium-review.googlesource.com/1159688 Commit-Queue: Steven Holte <holte@chromium.org> Reviewed-by:
Robert Kaplow (slow) <rkaplow@chromium.org> Cr-Commit-Position: refs/heads/master@{#581989}
-
Hitoshi Yoshida authored
We could not have IDL callback functions in IDL dictionary. This CL makes it possible. Bug: 867875 Change-Id: I156407fcf3e18b6e3a7ca507771fd3f168809c8f Reviewed-on: https://chromium-review.googlesource.com/1152336 Commit-Queue: Hitoshi Yoshida <peria@chromium.org> Reviewed-by:
Yuki Shiino <yukishiino@chromium.org> Reviewed-by:
Kenichi Ishibashi <bashi@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#581988}
-
Ahmed Fakhry authored
Switching to Unified Desktop Mode removes all current displays (including primary display) and replaces them with the unified display. The display manager notifies observers of display removals before display additions. At this point if an observer tries to get the primary display, it could lead to a crash because all displays have been removed. This CL fixes this by checking for this condition and returning a fake display with default parameters. BUG=866714 TEST=Manually and added new test that crashes without the fix. Change-Id: Id124884098c66e33136d480b2cb7d3f86d2ff4c1 Reviewed-on: https://chromium-review.googlesource.com/1168598 Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#581987}
-
Sunny Sachanandani authored
Add "DirectCompositionPreferNV12Overlays" feature flag to use NV12 for creating overlay swap chains when NV12 hardware overlays are supported. Bug: 869677 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 Change-Id: I50ad546e1f0e3cdc27a1c3dad74f52d91f6555e6 Reviewed-on: https://chromium-review.googlesource.com/1159838Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Zhenyao Mo <zmo@chromium.org> Commit-Queue: Sunny Sachanandani <sunnyps@chromium.org> Cr-Commit-Position: refs/heads/master@{#581986}
-
Yuki Shiino authored
Renames existing old Function to CallbackFunctionTreatedAsScriptValue in *.idl so that we can introduce new Function type that is type of |any ()|. Function type is now defined in core/dom/common_definitions.idl, and v8_function.{h,cc} are now code-generated (not yet used though). Bug: chromium:871208 Change-Id: I395c49e5d664cec14ad3b29653b10c4bb000f4fe Reviewed-on: https://chromium-review.googlesource.com/1166931Reviewed-by:Kentaro Hara <haraken@chromium.org> Reviewed-by:
Hitoshi Yoshida <peria@chromium.org> Commit-Queue: Yuki Shiino <yukishiino@chromium.org> Cr-Commit-Position: refs/heads/master@{#581985}
-
Peter Boström authored
This function is being removed and currently always returns true. While this mode was enabled, the bubble alignment was effectively ALIGN_EDGE_TO_ANCHOR_EDGE and paint type was PAINT_NONE. This change reflects that and cleans up a ton of code to paint and place the arrows that are no longer visible. Since images were only used when paint type was not PAINT_NONE related arrow and shadow images are also removed. Bug: chromium:867557 Change-Id: I22f9abcf55867bebb00d857324fdf6d7aeaccbc3 Reviewed-on: https://chromium-review.googlesource.com/1168108 Commit-Queue: Peter Boström <pbos@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#581984}
-
Tommy C. Li authored
This is a reland of af3a6bdc31c29746d749ba0ab9e7181c49c11642 Original change's description: > Omnibox Refresh UI: Hide placeholder text when keyword is selected > > Previously, when a keyword was selected, i.e. "Search Yahoo", we would > still show the placeholder text in the Omnibox when unfocused, like: > "Search Google or enter a URL". > > That is plainly not applicable to the selected keyword case. We don't > need to show placeholder text at all when there is a selected keyword, > since the selected keyword label itself gives ample instruction to the > user. > > Bug: 872327 > Change-Id: I84fd06964808554e5c606d2f2f371bea9c44b465 > Reviewed-on: https://chromium-review.googlesource.com/1168506 > Reviewed-by: Kevin Bailey <krb@chromium.org> TBR=krb@chromium.org Bug: 872327 Change-Id: I978f264d1d37b883e6e75b460b923573b01ada61 Reviewed-on: https://chromium-review.googlesource.com/1169931 Commit-Queue: Tommy Li <tommycli@chromium.org> Reviewed-by:
Tommy Li <tommycli@chromium.org> Cr-Commit-Position: refs/heads/master@{#581983}
-
Krishna Govind authored
R=abdulsyed@chromium.org Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I47c41909035edd1b5424fe8314914692249eca81 Reviewed-on: https://chromium-review.googlesource.com/1170302Reviewed-by:
Krishna Govind <govind@chromium.org> Cr-Commit-Position: refs/heads/master@{#581982}
-
Miguel Casas authored
This is just a reland of crrev.com/c/1167474; it got reverted due to infra issues (Gerit outage), see crbug.com/872722 and/or https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/YnUEOtzCrzs TBR=fserb@chromium.org Original CL description ------------------------------------------------ This CL simplifies OffscreenCanvasResourceProvider: - Removes the unused member variables |width_|, |height_| and |frame_provider_|. - Removes superfluous method Reshape(). - Forward declares a few data types ISO including files. - Uses early return for easier indenting. This is inspired by junov@'s crrev.com/c/1103011 (in the follow up CL crrev.com/c/1167907 I'll fold OffscreenCanvasResourceProvider into CanvasResourceDispatcher, but it's easier to review in two steps). Bug: 839970 Change-Id: Ic4d3a6002cec32c01e8914a11d3c392981dae8b5 Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_slimming_paint_v2;master.tryserver.blink:linux_trusty_blink_rel Reviewed-on: https://chromium-review.googlesource.com/1167474Reviewed-by:
Fernando Serboncini <fserb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1169829Reviewed-by:
Miguel Casas <mcasas@chromium.org> Commit-Queue: Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#581981}
-
Zhuoyu Qian authored
As the comment in nss_profile_filter_chromeos.h by mattm@, remove CertNotAllowedForProfilePredicate and use labmda in the client. Signed-off-by:
Zhuoyu Qian <zhuoyu.qian@samsung.com> Change-Id: I601067a66f04827e5da361b90e939f67468a8b24 Reviewed-on: https://chromium-review.googlesource.com/1165262Reviewed-by:
Matt Mueller <mattm@chromium.org> Cr-Commit-Position: refs/heads/master@{#581980}
-
Lukasz Anforowicz authored
Some test expectations have been already removed in r545969, but have been in the meantime readded in r550463. Some test expectations were missed and were left in place in r545969. Some tests are still failing. FWIW, the affected tests pass when run 20 times locally. Bug: 794631 Change-Id: I22ae64eab4a82c92542b65d6d336fa3832742091 Reviewed-on: https://chromium-review.googlesource.com/1169916 Commit-Queue: Łukasz Anforowicz <lukasza@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Cr-Commit-Position: refs/heads/master@{#581979}
-
David Benjamin authored
It's got a second e in it. Like in POSIX! http://pubs.opengroup.org/onlinepubs/007904975/functions/creat.html Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: I2de5f0d0031b6faa2eae9eca234778e6315b10f3 Reviewed-on: https://chromium-review.googlesource.com/1169870Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Commit-Queue: David Benjamin <davidben@chromium.org> Cr-Commit-Position: refs/heads/master@{#581978}
-
Zhongyi Shi authored
A QuicChromiumPacketReader::StartReading() should only be called once. It will read again automatically when the previous read result has been processed. Calling StartReading on a started reader may break the invariant and cause bugs like http://crbug.com/872011 Bug: 872011 Change-Id: I6dde0a3daacb9ed9b6d7d4781de3c132e0a6aad7 Reviewed-on: https://chromium-review.googlesource.com/1166340 Commit-Queue: Zhongyi Shi <zhongyi@chromium.org> Reviewed-by:
Ryan Hamilton <rch@chromium.org> Cr-Commit-Position: refs/heads/master@{#581977}
-
Dan Sinclair authored
$ git log 2d9a32526..714bf84e5 --date=short --no-merges --format='%ad %ae %s' 2018-08-08 alanbaker Split mode setting opcode validation into new file. 2018-08-08 alanbaker Split annotation opcode validation into new file. 2018-08-08 alanbaker Replace asserts with returns 2018-08-08 alanbaker Split debug opcode validation into new file 2018-08-03 alanbaker Move type instruction validation into separate file 2018-08-08 31666470+s-perron Validate the input to Optimizer::Run (#1799) 2018-08-03 alanbaker Unify validation of OpCopyMemory* 2018-08-03 alanbaker Refactor where opcodes are validated 2018-08-07 shartte When clang is used as a MSVC frontend (clang-cl.exe) it does not behave exactly as GCC would. I.e. -Wall translates to /Wall, which is an alias for -Weverything. This causes massive C++98 compat warnings logspam. (#1808) 2018-08-07 dj2 Remove unused bit stream methods. (#1807) 2018-08-07 dj2 Simplify MoveToFront (#1806) 2018-08-07 dj2 Fixup readabilty/inheritance warnings (#1805) 2018-08-07 dj2 Fix readbility/braces warnings (#1804) 2018-08-03 dj2 Cleanup includes. (#1795) Created with: roll-dep src/third_party/SPIRV-Tools/src Bug: 870510, 870571, 870681, 871065, 872572 TBR=dneto@chromium.org Change-Id: I6e50c26fb10368a912c9f7e95b12dd789f0bf5f5 Reviewed-on: https://chromium-review.googlesource.com/1169129Reviewed-by:
dsinclair <dsinclair@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org> Cr-Commit-Position: refs/heads/master@{#581976}
-
Jun Cai authored
This CL adds x-frame-options headers support for network service. It is similar to what ChromeResourceDispatcherHostDelegate::OnResponseStarted() does which is for the case when network service is not enabled. Bug: 852877 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: I0a66d6c4f8e91ee05baa00e918480653653b635b Reviewed-on: https://chromium-review.googlesource.com/1157524Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Jun Cai <juncai@chromium.org> Cr-Commit-Position: refs/heads/master@{#581975}
-
Livvie Lin authored
Optimize to only send SSLInfo from network service on top-level requests. Changes GetURLLoaderOptions to only set kURLLoadOptionSendSSLInfoWithResponse when |is_main_frame| is true and sets new default to kURLLoadOptionNone. This also makes a change in WebContentsImpl to fetch SSLInfo only on main frame navigations. Bug: 787535 Change-Id: Ie4a929ba90e4c358d111e174a3c399298f22b5f3 Reviewed-on: https://chromium-review.googlesource.com/1148239Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Charlie Harrison <csharrison@chromium.org> Commit-Queue: Livvie Lin <livvielin@chromium.org> Cr-Commit-Position: refs/heads/master@{#581974}
-
Renjie authored
Change-Id: Ia4f0ccf2a9c896d21f299606adfad6904457984f Bug: crbug.com/871407 Change-Id: Ia4f0ccf2a9c896d21f299606adfad6904457984f Reviewed-on: https://chromium-review.googlesource.com/1164065Reviewed-by:
Zhongyi Shi <zhongyi@chromium.org> Reviewed-by:
Ryan Hamilton <rch@chromium.org> Commit-Queue: Renjie Tang <renjietang@chromium.org> Cr-Commit-Position: refs/heads/master@{#581973}
-
David Black authored
Previously, opening a browser tab would cause Assistant UI to hide. Now, we'll remain open but go into mini UI mode. In mini UI mode, we'll show the active query (if there is one) in lieu of the default prompt string. Stylus behavior remains unchanged. This CL also adds an AssistantContainerLayout to serve as the layout manager for AssistantContainerView. This was done to setup for additional motion specs as well as to fix a crash. See bug for demo. Bug: b:112376466 Change-Id: Ia920f3c2509eb6f255d5eb6d508dfb650383773b Reviewed-on: https://chromium-review.googlesource.com/1168654 Commit-Queue: David Black <dmblack@google.com> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Cr-Commit-Position: refs/heads/master@{#581972}
-
Jialiu Lin authored
This is a reland of 7aaa0d3df4a9d7d7c24b8f20d8362e76e1569e16 No code change. Previous revert is due to Gerrit outage http://crbug.com/872722 Original change's description: > Pass advanced protection bit to AccountInfo via DiceReponseHandler > > When DiceResponseHandler retrieves refresh token, update the AccountInfo > to reflect the advanced protection status of this Gaia account. > > Note, incognito mode sign-in behavior is not changed. > > Bug: 866620 > Change-Id: Ib70f9056b565476bf2a7293255eaffa503ca9682 > Reviewed-on: https://chromium-review.googlesource.com/1159470 > Reviewed-by: Mihai Sardarescu <msarda@chromium.org> TBR=msarda@chromium.org Bug: 866620 Change-Id: I3fe1ef45690ab17cb00754deb9b7f8778fb08aca Reviewed-on: https://chromium-review.googlesource.com/1169926 Commit-Queue: Jialiu Lin <jialiul@chromium.org> Reviewed-by:
Jialiu Lin <jialiul@chromium.org> Cr-Commit-Position: refs/heads/master@{#581971}
-
Alexander Alekseev authored
This is a reland of 04b716f7 Original change's description: > ChromeOS OOBE: Add Welcome screen animations. > > This Cl replaces static images with animations. > > Bug: 852038 > Change-Id: I8185420aed0ed23c080ac0bc7a2270d3ac4c5b7b > Reviewed-on: https://chromium-review.googlesource.com/1166590 > Commit-Queue: Alexander Alekseev <alemate@chromium.org> > Reviewed-by: Wenzhao (Colin) Zang <wzang@chromium.org> > Cr-Commit-Position: refs/heads/master@{#581735} Bug: 852038 Change-Id: I50659b137bc2e4c1facb7a3b3b734e1a1d3a6500 Reviewed-on: https://chromium-review.googlesource.com/1168328Reviewed-by:
Wenzhao (Colin) Zang <wzang@chromium.org> Commit-Queue: Alexander Alekseev <alemate@chromium.org> Cr-Commit-Position: refs/heads/master@{#581970}
-
Min Chen authored
Bug: 872052 Test: SplitViewTabDraggingTest.ShowNewWindowItemWhenDragStarts Change-Id: Ib7a563d350fb5d789495518b414f7a319bc9063b Reviewed-on: https://chromium-review.googlesource.com/1168592 Commit-Queue: Min Chen <minch@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#581969}
-
Eric Willigers authored
Shipped in M64, this feature allows developers to selectively enable and disable use of autoplay through the feature policy HTTP header or the <iframe> "allow" attribute. https://chromium-review.googlesource.com/831520 https://www.chromestatus.com/features/5100524789563392 BUG=788390 Change-Id: I0f4346bc75dc922c8004f0008921d68a5a3beede Reviewed-on: https://chromium-review.googlesource.com/1166614 Commit-Queue: Eric Willigers <ericwilligers@chromium.org> Reviewed-by:
Becca Hughes <beccahughes@chromium.org> Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Cr-Commit-Position: refs/heads/master@{#581968}
-
kylechar authored
This is used to ensure that ExternalBeginFrameSources have a unique |source_id| after the GPU process is restarted. Bug: 871755 Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel Change-Id: Ic5d6066fa2bcdee3c796f9f56967ffcd51e230f1 Reviewed-on: https://chromium-review.googlesource.com/1165888Reviewed-by:
ccameron <ccameron@chromium.org> Reviewed-by:
Saman Sami <samans@chromium.org> Commit-Queue: kylechar <kylechar@chromium.org> Cr-Commit-Position: refs/heads/master@{#581967}
-
Peter Kasting authored
Bug: none Change-Id: Icf7f6223f2f3e9c652d5d3dcacf7f652869490a5 Reviewed-on: https://chromium-review.googlesource.com/1169767 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#581966}
-
- 09 Aug, 2018 1 commit
-
-
chrome://process-internalsAlex Moshchuk authored
The full list of isolated origins might include sensitive info in upcoming field trials, so show the number of isolated origins instead of actual list. Bug: 872375 Change-Id: I944919cc9ce2afa953bbca77a489c9df62105ab8 Reviewed-on: https://chromium-review.googlesource.com/1167962Reviewed-by:
Nasko Oskov <nasko@chromium.org> Commit-Queue: Alex Moshchuk <alexmos@chromium.org> Cr-Commit-Position: refs/heads/master@{#581965}
-