- 14 Dec, 2017 40 commits
-
-
Henrik Grunell authored
TBR=sunyunjia@chromium.org Bug: 664858 Change-Id: I8d7332fdb6755347177fcf7e736e0d7f4d6e533d No-Try: true Reviewed-on: https://chromium-review.googlesource.com/827016Reviewed-by:
Henrik Grunell <grunell@chromium.org> Commit-Queue: Henrik Grunell <grunell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524054}
-
Manuel Rego Casasnovas authored
BUG=767015 Change-Id: Id56937cba12dcec0959c6cc78aa83cbde25bea74 Reviewed-on: https://chromium-review.googlesource.com/826639Reviewed-by:
Javier Fernandez <jfernandez@igalia.com> Commit-Queue: Manuel Rego Casasnovas <rego@igalia.com> Cr-Commit-Position: refs/heads/master@{#524053}
-
Robert Flack authored
By spec (https://www.w3.org/TR/css-position-3/#sticky-pos) a sticky position offset can cause overflow but must be capable of being scrolled to. Despite not working in Chrome yet this adds web platform tests for this. BUG=752022 Change-Id: I3bc8b384e4459cd4d1498f64c376e764fba71091 Reviewed-on: https://chromium-review.googlesource.com/825165Reviewed-by:
Stephen McGruer <smcgruer@chromium.org> Commit-Queue: Robert Flack <flackr@chromium.org> Cr-Commit-Position: refs/heads/master@{#524052}
-
Michael Lippautz authored
Move Oilpan's incremental marking work behind a build-time flag enable_blink_heap_incremental_marking Bug: chromium:757440 Change-Id: Id4adddcf0669dc165935eced90e8caefbb76a094 Reviewed-on: https://chromium-review.googlesource.com/822492 Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#524051}
-
Henrik Grunell authored
TBR= kaznacheev@chromium.org Bug: 794703 Change-Id: I0a8df88bc3b2e911cafdb05230336e2cc2aa04d3 Reviewed-on: https://chromium-review.googlesource.com/827011Reviewed-by:
Henrik Grunell <grunell@chromium.org> Commit-Queue: Henrik Grunell <grunell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524050}
-
Tatiana Gornak authored
Copy icon from xml isn't displayed. FReverting to using png while figuring out why this is happening. Bug: 788943 Change-Id: Ic2941708a27bfe1019b85db16bbf9fe8bc2137b0 Reviewed-on: https://chromium-review.googlesource.com/803278 Commit-Queue: Tatiana Gornak <melandory@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#524049}
-
Henrik Grunell authored
TBR= lwchkg@chromium.org Bug: 794821 Change-Id: Ie3fc909acee14e5bf8b8b80e8c8e0e2b3bf45945 Reviewed-on: https://chromium-review.googlesource.com/827006Reviewed-by:
Henrik Grunell <grunell@chromium.org> Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Commit-Queue: Henrik Grunell <grunell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524048}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 00c23f03. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/7692 Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md TBR=leon.han@intel.com No-Export: true Change-Id: I76bf3bfa205dd1ae5e38266db56b13b80c35aa35 Reviewed-on: https://chromium-review.googlesource.com/826384 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by:
Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#524047}
-
josyulavn authored
Refactor V8ScriptRunner & AbstractEventlistener to make v8::Isolate* as first parameter BUG=424446 Change-Id: I6349a8699efb3e69e27b91a313167f310c1219dc Reviewed-on: https://chromium-review.googlesource.com/826765Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: srirama chandra sekhar <srirama.m@samsung.com> Cr-Commit-Position: refs/heads/master@{#524046}
-
Henrik Grunell authored
This reverts commit 4e246b2e. Reason for revert: Likely to be the reason for breakage of virtual/threaded/fast/scroll-behavior/smooth-scroll/horizontal-smooth-scroll-in-rtl.html Original change's description: > [LayoutNG] Don't let legacy layout re-enter layout of a scrollable block node. > > We'd end up re-entering NGBlockNode::CopyFragmentDataToLayoutBox() for > the same node. > > After layout of a fragment, NGBlockNode::CopyFragmentDataToLayoutBox() would > call LayoutBlock::UpdateAfterLayout(), which would call > scrollbar was toggled, it'd go ahead and call UpdateLayout() on the object, > which would take us back into the NG layout machinery, on the same node, via > Finally we'd re-enter NGBlockNode::CopyFragmentDataToLayoutBox(), causing misc > kinds of misery, such as not being able to paint the block at all. For > multicol, there'd even be a DCHECK failure "Variable fragment inline size not > supported", because the code got confused as to whether a fragment was a first > fragment or not. > > LayoutBox: :UpdateAfterLayout(), which would call > PaintLayer: :UpdateSizeAndScrollingAfterLayout(), which would call > PaintLayerScrollableArea: :UpdateAfterLayout(). If this code detected that a > LayoutNGBlockFlow: :UpdateBlockLayout(), further to NGBlockNode::Layout(). > Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_layout_ng;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 > Change-Id: I832372223e324682bb4e38b3177dce30093df2e1 > Reviewed-on: https://chromium-review.googlesource.com/824265 > Commit-Queue: Morten Stenshorne <mstensho@chromium.org> > Reviewed-by: Emil A Eklund <eae@chromium.org> > Cr-Commit-Position: refs/heads/master@{#524039} TBR=eae@chromium.org,ikilpatrick@chromium.org,mstensho@chromium.org Change-Id: Idf7eb66a284cb73c4c62217725ef02a9538494a4 No-Presubmit: true No-Tree-Checks: true No-Try: true Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_layout_ng;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Reviewed-on: https://chromium-review.googlesource.com/826984Reviewed-by:
Henrik Grunell <grunell@chromium.org> Commit-Queue: Henrik Grunell <grunell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524045}
-
Patrik Höglund authored
This reverts commit 53ccc526. Reason for revert: Now has diagnostic uploading, so we'll at least be able to tell why it fails if it's still failing. I've also tried tweaking the sound config on the machine. Bug: chromium:677256 Change-Id: I96cdf15eff0b9d1e09053560ac5e4c518abc5caa Reviewed-on: https://chromium-review.googlesource.com/826942Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Commit-Queue: Patrik Höglund <phoglund@chromium.org> Cr-Commit-Position: refs/heads/master@{#524044}
-
Mostyn Bramley-Moore authored
There are several kEpsilon constants defined in //services/device/generic_sensor which conflict in jumbo builds. To avoid this, we can move the definition to generic_sensor_consts.h. BUG=794692 Change-Id: Ib31f20957fc8cccab59abb36779fccff9491239e Reviewed-on: https://chromium-review.googlesource.com/826062Reviewed-by:
Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> Commit-Queue: Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> Cr-Commit-Position: refs/heads/master@{#524043}
-
Daniel Bratell authored
To avoid clashes between test data variables and similar changes, this patch puts tests that would collide in custom namespaces following a pattern used successfully in Blink. Bug: 746953 Change-Id: I49b9d127c513ead92c4743d6e5701b80a91db69e Reviewed-on: https://chromium-review.googlesource.com/824268 Commit-Queue: Daniel Bratell <bratell@opera.com> Reviewed-by:
Joshua Bell <jsbell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524042}
-
Henrik Grunell authored
TBR=bmcquade@chromium.org Bug: 794879 Change-Id: Ib61cabfbfa044791aa111c3281c1c9d6d59a00a4 Reviewed-on: https://chromium-review.googlesource.com/826632Reviewed-by:
Henrik Grunell <grunell@chromium.org> Commit-Queue: Henrik Grunell <grunell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524041}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/111e9904..6c8aaa8d 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=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;master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: I47a1216e4df3df087a1222d9ef22d31e83972591 Reviewed-on: https://chromium-review.googlesource.com/826284Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#524040}
-
Morten Stenshorne authored
We'd end up re-entering NGBlockNode::CopyFragmentDataToLayoutBox() for the same node. After layout of a fragment, NGBlockNode::CopyFragmentDataToLayoutBox() would call LayoutBlock::UpdateAfterLayout(), which would call scrollbar was toggled, it'd go ahead and call UpdateLayout() on the object, which would take us back into the NG layout machinery, on the same node, via Finally we'd re-enter NGBlockNode::CopyFragmentDataToLayoutBox(), causing misc kinds of misery, such as not being able to paint the block at all. For multicol, there'd even be a DCHECK failure "Variable fragment inline size not supported", because the code got confused as to whether a fragment was a first fragment or not. LayoutBox: :UpdateAfterLayout(), which would call PaintLayer: :UpdateSizeAndScrollingAfterLayout(), which would call PaintLayerScrollableArea: :UpdateAfterLayout(). If this code detected that a LayoutNGBlockFlow: :UpdateBlockLayout(), further to NGBlockNode::Layout(). Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_layout_ng;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I832372223e324682bb4e38b3177dce30093df2e1 Reviewed-on: https://chromium-review.googlesource.com/824265 Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Reviewed-by:
Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#524039}
-
Gauthier Ambard authored
This CL adds an haptic feedback when presenting the "Articles aren't available right now" snackbar. Bug: 794726 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: Ia96d7128bc85c0adfd09f4a2f8a3bb9d9fc76072 Reviewed-on: https://chromium-review.googlesource.com/826629Reviewed-by:
Elodie Banel <lod@chromium.org> Commit-Queue: Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#524038}
-
Ilya Sherman authored
This CL covers all of the remaining uses other than //third_party (and the macro itself). R=sky@chromium.org TBR=wfh@chromium.org Bug: 773850 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:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: Icf1931aee5a5ccba6205a1c711423c596ca39d45 Reviewed-on: https://chromium-review.googlesource.com/823602 Commit-Queue: Ilya Sherman <isherman@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#524037}
-
Stefan Zager authored
R=skobes@chromium.org,chrishtr@chromium.org Bug: Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I13743f230cdc11a53878ea3a9c8d8d63637f5e9f Reviewed-on: https://chromium-review.googlesource.com/826305Reviewed-by:
Steve Kobes <skobes@chromium.org> Commit-Queue: Stefan Zager <szager@chromium.org> Cr-Commit-Position: refs/heads/master@{#524036}
-
Gauthier Ambard authored
The clean toolbar should be able to resize to fit a fake safe area. Bug: 794164 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: Ie754943620a5a22d8725bccb640f636da06dbe5e Reviewed-on: https://chromium-review.googlesource.com/822197Reviewed-by:
Sergio Collazos <sczs@chromium.org> Commit-Queue: Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#524035}
-
Takeshi Yoshino authored
Bug: 627682 Change-Id: I752828ced7052c99c03a8004b3e8cd75c50b9550 Reviewed-on: https://chromium-review.googlesource.com/824142 Commit-Queue: Takeshi Yoshino <tyoshino@chromium.org> Reviewed-by:
Mike West <mkwst@chromium.org> Cr-Commit-Position: refs/heads/master@{#524034}
-
Henrik Grunell authored
Fails on Win7. TBR=chenwilliam@chroimum.org Bug: 794869 Change-Id: Ie32fd675197bd608ce8a236ba0401966f3371b72 No-Try: true Reviewed-on: https://chromium-review.googlesource.com/826628Reviewed-by:
Henrik Grunell <grunell@chromium.org> Commit-Queue: Henrik Grunell <grunell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524033}
-
Chris Pickel authored
Brings the Local NTP back in line with the spacing required for certain overly-tall Doodles. Bug: 761994 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I7bf8e6aa9e5a3a7035c14b0e1a4c2c2679decc07 Reviewed-on: https://chromium-review.googlesource.com/824239Reviewed-by:
Marc Treib <treib@chromium.org> Commit-Queue: Chris Pickel <sfiera@chromium.org> Cr-Commit-Position: refs/heads/master@{#524032}
-
Daniel Bratell authored
Nobody set or read the ui::surface::TransportDIB member sequence_num_ and that made the compiler upset in jumbo builds where the compiler sees more of the whole picture. Change-Id: Ia59e824e9e6175870065336c6403958878d2dba0 Reviewed-on: https://chromium-review.googlesource.com/826063Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Daniel Bratell <bratell@opera.com> Cr-Commit-Position: refs/heads/master@{#524031}
-
Daniel Bratell authored
Both the real and the testing version of ui::LinuxInputMethodContextFactory were named g_linux_input_method_context_factory which caused collisions in jumbo builds. This renames the testing one to g_linux_input_method_context_factory_for_testing Bug: 773275 Change-Id: Ia11a8a16ce5a40ef4a6469fe5bdcfeab2323e068 Reviewed-on: https://chromium-review.googlesource.com/826064Reviewed-by:
Yuichiro Hanada <yhanada@chromium.org> Reviewed-by:
Shu Chen <shuchen@chromium.org> Commit-Queue: Daniel Bratell <bratell@opera.com> Cr-Commit-Position: refs/heads/master@{#524030}
-
Daniel Bratell authored
In jumbo builds several cc files are compiled in the same translation unit and then the different kClassIdentifier symbols clashed. This renames them to kPeerConnectionRemoteTrackIdentifier and kProcessedLocalAudioSourceIdentifier Bug: 746953 Change-Id: I7fe95ebbef69f4dd3b47258417cc917ba441dd91 Reviewed-on: https://chromium-review.googlesource.com/822191Reviewed-by:
Sergey Ulanov <sergeyu@chromium.org> Commit-Queue: Daniel Bratell <bratell@opera.com> Cr-Commit-Position: refs/heads/master@{#524029}
-
Mostyn Bramley-Moore authored
This top-level 'using namespace' statement gives -Wheader-hygiene warnings in jumbo builds. BUG=794692 Change-Id: Ifc2aea2f04ca580267f1a02892c13b04b27f7073 Reviewed-on: https://chromium-review.googlesource.com/826222 Commit-Queue: Colin Blundell <blundell@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#524028}
-
Eric Lawrence authored
A comment in KURLTest.cpp is now wrong because our handling of fragment encoding has changed. Fix the comment. Change-Id: I1e8be982d734ca45bb316d73313451b0eb17e204 Reviewed-on: https://chromium-review.googlesource.com/826004Reviewed-by:
Mike West <mkwst@chromium.org> Commit-Queue: Mike West <mkwst@chromium.org> Cr-Commit-Position: refs/heads/master@{#524027}
-
Zhenyao Mo authored
With this flag specified, Chrome runs in compatibility profile instead of core. This CL also put GeForce GT 120 to compatibility profile. BUG=657817 TEST=manual R=kbr@chromium.org 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: I2242883406b0779c7baef914e1f966772f77b7ef Reviewed-on: https://chromium-review.googlesource.com/818186Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Kenneth Russell <kbr@chromium.org> Cr-Commit-Position: refs/heads/master@{#524026}
-
Ricky Liang authored
On devices that have camera sensors mounted in portrait orientation, we should set the rotation accordingly; otherwise the displayed frames are not in the correct orientation. BUG=b:32690003 TEST=Make sure the camera preview is displayed correct in the Chrome camera app on scarlet. Change-Id: Ia69a23808a2cd68e0d101289e569ce885b16be1d Reviewed-on: https://chromium-review.googlesource.com/823371Reviewed-by:
Wu-Cheng Li <wuchengli@chromium.org> Commit-Queue: Ricky Liang <jcliang@chromium.org> Cr-Commit-Position: refs/heads/master@{#524025}
-
Hajime Hoshi authored
We plan to deprecate kUnspecedTimer / kUnspecedLoading / kUnthrottled and introduce kInternal* for internal usages. This CL introduces kInternalTest for tests or mock objects and replaces the current task types with kInternalTest. Doc: https://docs.google.com/document/d/1n9qNbP0H28J4DIzorydemc36b1xy-8-5zEADsoJfMxU/edit# Bug: 794123 Change-Id: If4e616d9b770ff0e5be88261e68c3fd572d05783 Reviewed-on: https://chromium-review.googlesource.com/822792 Commit-Queue: Hajime Hoshi <hajimehoshi@chromium.org> Reviewed-by:
Mike West <mkwst@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#524024}
-
chromeos-commit-bot@chromium.org authored
TBR=chrome-os-gardeners@google.com Change-Id: I5a509bbf7a893b336b610ac0c95e5bdf768694b6 Reviewed-on: https://chromium-review.googlesource.com/826108Reviewed-by:
ChromeOS Commit Bot <chromeos-commit-bot@chromium.org> Cr-Commit-Position: refs/heads/master@{#524023}
-
Tomasz Mikolajewski authored
1. Remove mtomasz from OWNERS. 2. If the last one, then add fukino@ and yamaguchi@. BUG=None TEST=None Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I7b7c36f45575aad15a08e63ba7d7c52d6f8d3000 Reviewed-on: https://chromium-review.googlesource.com/816644Reviewed-by:
Ben Wells <benwells@chromium.org> Reviewed-by:
Naoki Fukino <fukino@chromium.org> Reviewed-by:
Tatsuhisa Yamaguchi <yamaguchi@chromium.org> Commit-Queue: Naoki Fukino <fukino@chromium.org> Cr-Commit-Position: refs/heads/master@{#524022}
-
Jun Choi authored
Changed UTF8 encoding check function in CBOR decoder to include bytes after first embedded NULL byte. Failed cluster fuzz test case : \63\00\00\A6 Bug: 793587 Change-Id: If519678d29568451c121617a2b02079345a14307 Reviewed-on: https://chromium-review.googlesource.com/818731 Commit-Queue: Jun Choi <hongjunchoi@chromium.org> Reviewed-by:
Chris Palmer <palmer@chromium.org> Reviewed-by:
Balazs Engedy <engedy@chromium.org> Reviewed-by:
Jeffrey Yasskin <jyasskin@chromium.org> Cr-Commit-Position: refs/heads/master@{#524021}
-
Max Morin authored
RenderFrameAudioInputStreamFactory is intended to be exposed to the renderer. The AudioInputStreamHandle class is introduced to bundle a stream and its client. When moving to the audio service, the AudioInputStreamHandle will stay in content/ while the MojoAudioInputStream will be in the audio service. This diagram shows how we want the stream setup to look in the near future: https://docs.google.com/drawings/d/1pSYEqiG46N0OD6rJhfTpohyn2ZkSWsp3ZIHe2PDh0Us/edit Bug: 653871 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: I4ff52dbc4797b595e3dd791d1bafa9325a0af9d2 Reviewed-on: https://chromium-review.googlesource.com/771196Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Sam McNally <sammc@chromium.org> Reviewed-by:
Olga Sharonova <olka@chromium.org> Commit-Queue: Max Morin <maxmorin@chromium.org> Cr-Commit-Position: refs/heads/master@{#524020}
-
Scott Violet authored
EasyResizeWindowTargeter may be used to shrink the region of a window you can interact with (the shelf uses this in certain modes). For mus we only support this with a hit-test mask. This patch wires up EasyResizeWindowTargeter to use a hit-test mask when necessary. BUG=775223 TEST=covered by test Change-Id: I3e1b494e890f0f8366ce4a8a1fc64f839a61542f Reviewed-on: https://chromium-review.googlesource.com/826032 Commit-Queue: Scott Violet <sky@chromium.org> Reviewed-by:
Elliot Glaysher <erg@chromium.org> Cr-Commit-Position: refs/heads/master@{#524019}
-
Xiaohan Wang authored
Given read can be done asynchronously, if decoder Reset() if called while there are outstanding reads, Reset() could be called before Decode() causing out-of-order issues. This CL adds a Flush() call on MojoDecoderBufferReader such that decoder Reset() will only be called after all outstanding decodes have been processed. BUG=792281 TEST=Add even more tests Change-Id: Iaaf5073fcda6c78f85c0d624f1ad11566c8c726f Reviewed-on: https://chromium-review.googlesource.com/823574 Commit-Queue: Xiaohan Wang <xhwang@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Dan Sanders <sandersd@chromium.org> Cr-Commit-Position: refs/heads/master@{#524018}
-
Luciano Pacheco authored
Convert and merge FrameHostMsg_SmartClipDataExtracted now using Mojo callback directly. Bug: 786836 Change-Id: If2925e9e019854558f8c97cf51e6b0d32b521345 Reviewed-on: https://chromium-review.googlesource.com/804804Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Reviewed-by:
Sam McNally <sammc@chromium.org> Commit-Queue: Luciano Pacheco <lucmult@chromium.org> Cr-Commit-Position: refs/heads/master@{#524017}
-
junweifu authored
Load com base functions dynamically at runtime with core_winrt_util. Text Detection only support Latin-1 text as documented in specification[1], the service can't be connected if the language isn't supported on the system. Create OcrEngine interface that provides optical character(OCR) functionality. Add unittest to test the result of Creating OcrEngine. [1] https://wicg.github.io/shape-detection-api/text.html#text-detection-api BUG=790931 Cq-Include-Trybots: master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win10_chromium_x64_rel_ng Change-Id: I4e171aad11a50197c7cfb64547defa24d0988f3e Reviewed-on: https://chromium-review.googlesource.com/813237 Commit-Queue: Junwei Fu <junwei.fu@intel.com> Reviewed-by:
Miguel Casas <mcasas@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#524016}
-
Hiroki Nakagawa authored
Bug: 794837 Change-Id: I429e94757e3d486b32c1ec204ed027f18f0ae1e5 Reviewed-on: https://chromium-review.googlesource.com/826830Reviewed-by:
Yutaka Hirano <yhirano@chromium.org> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Cr-Commit-Position: refs/heads/master@{#524015}
-