- 04 Dec, 2017 40 commits
-
-
pdfium-deps-roller@chromium.org authored
https://pdfium.googlesource.com/pdfium.git/+log/c5bfeec86aa7..a827770faf5c $ git log c5bfeec86..a827770fa --date=short --no-merges --format='%ad %ae %s' 2017-12-04 dsinclair Shuffle XFA code around 2017-12-04 dsinclair XFA JS method cleanup 2017-12-04 dsinclair Remove XFA isolate tracker 2017-12-04 thestig Fix nits in CPDF_Type3Font. 2017-12-04 dsinclair Remove unused XFA code 2017-12-04 thestig Break out CFX_ImageTransformer mask calculations. Created with: roll-dep src/third_party/pdfium The AutoRoll server is located here: https://pdfium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=dsinclair@chromium.org Change-Id: I7cabbea48671f114fa5da31107629a8062fe6590 Reviewed-on: https://chromium-review.googlesource.com/806422 Reviewed-by: <pdfium-deps-roller@chromium.org> Commit-Queue: <pdfium-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#521385}
-
Philip Jägenstedt authored
https://github.com/w3c/web-platform-tests/pull/8533 has been merged and the test confirmed to be working locally if imported. It will be imported by the next automatic import process. No-Try: true Change-Id: Ia73bbe23f21dca58e66ccfd095efb862ec3e94c4 Reviewed-on: https://chromium-review.googlesource.com/805213Reviewed-by:
Joshua Bell <jsbell@chromium.org> Commit-Queue: Joshua Bell <jsbell@chromium.org> Cr-Commit-Position: refs/heads/master@{#521384}
-
Dave Tapuska authored
We were not waiting for the GPU to finish its swap before stopping the tracing. Hook up some listeners to latency info coming back and terminate the run loop when we find the terminal component we are looking for. BUG=789096 Change-Id: I2b8336b8568c8d513d60f2314c4a3b7703416a66 Reviewed-on: https://chromium-review.googlesource.com/802017 Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
Timothy Dresser <tdresser@chromium.org> Cr-Commit-Position: refs/heads/master@{#521383}
-
Robert Sesek authored
With Breakpad, the crash key storage is stored in a static global, and having the target be a static_library resulted in having multiple copies existing in the component build. This also changes the Breakpad crash key storage to be lazily initialized, which matches what Crashpad does after https://chromium-review.googlesource.com/c/crashpad/crashpad/+/793981. The storage is still initialized deterministically in the static release build, but is done to support unit tests. Bug: 598854 Change-Id: Ic6f100fd0310545fe2697152bd076846153f16d2 Reviewed-on: https://chromium-review.googlesource.com/802274Reviewed-by:
Mark Mentovai <mark@chromium.org> Commit-Queue: Robert Sesek <rsesek@chromium.org> Cr-Commit-Position: refs/heads/master@{#521382}
-
Ojan Vafai authored
This reverts commit 0ea77a78. Reason for revert: Caused crashing browser_tests. ExtensionApiTest.Debugger ExtensionApiTestWithSwitch.ExtensionDebugger https://ci.chromium.org/buildbot/chromium.win/Win7%20Tests%20%28dbg%29%281%29/64978 Original change's description: > [DevTools] Switch shared worker inspection from routing id to SharedWorkerHost > > This is a preparation to replace routing id + legacy IPC with Mojo interface > retrievable from SharedWorkerHost. > > Temporarily duplicated some code from WorkerDevToolsAgentHost, which > makes it possible to migrate shared and service workers separately. > > Removed a test for WORKER_STATE manipulations altogether with the state itself. > > Bug: 776009 > Change-Id: Id884f4f5009eb70148251c94cae9629d5a1f6e8e > Reviewed-on: https://chromium-review.googlesource.com/783110 > Commit-Queue: Dmitry Gozman <dgozman@chromium.org> > Reviewed-by: Tsuyoshi Horo <horo@chromium.org> > Reviewed-by: Alexei Filippov <alph@chromium.org> > Cr-Commit-Position: refs/heads/master@{#521277} TBR=dgozman@chromium.org,horo@chromium.org,alph@chromium.org Change-Id: I263fe6e0f30e3c20fbb91e4a55797aadd9624775 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 776009 Reviewed-on: https://chromium-review.googlesource.com/806814Reviewed-by:
Ojan Vafai <ojan@chromium.org> Commit-Queue: Ojan Vafai <ojan@chromium.org> Cr-Commit-Position: refs/heads/master@{#521381}
-
yiyix authored
The most common transform used in rendering are simple transforms, such as translation and scaling. This patch is aimed to optimize the usage of these simple transforms. We used to transform every draw quad to the target space and verify that if the draw quad is behind a occlusion region or not. Since these simple transforms are invertible, we can transform the occlusion region from the target space to the coordinate space so that we can do the verification without applying transform on draw quad. The traversal speed is increased by 8 times as shown here: https://docs.google.com/document/d/1gM4h1ca2jDWdXbYa9yjC53m0sJzaT9skqbPGnfDsdyI/edit#heading=h.7y9syhsnunpw Before: 98.26% viz::Display::RemoveOverdrawQuads(CompositorFrame) 95.58% viz::Display::RemoveOverdrawQuads(CompositorFrame) 53.17% cc::MathUtil::MapEnclosingClippedRect(gfx::Transform, Rect) 9.36% cc::ListContainer::viz::DrawQuad::Iterator 9.07% cc::ListContainer::viz::SharedQuadState::end 6.77% cc::MathUtil::MapEnclosedRectWith2dAxisAlignedTransform(gfx::Transform, Rect) 5.20% cc::SimpleEnclosedRegion::Union(gfx::Rect) 4.46% cc::SimpleEnclosedRegion::Contains(gfx::Rect) 2.28% cc::ListContainerHelper::PositionInCharAllocator After applying this patch, https://chromium-review.googlesource.com/c/chromium/src/+/783799 and https://chromium-review.googlesource.com/c/chromium/src/+/782063: 97.37% viz::Display::RemoveOverdrawQuads(CompositorFrame) 1.23% cc::LapTimer::NextLap() 0.48% cc::ListContainer::viz::SharedQuadState::ReverseIterator 0.21% gfx::Rect::IsEmpty() 0.17% gfx::Transform(SkMatrix44) 0.09% cc::LapTimer::HasTimeLimitExpired() 0.08% cc::ListContainerHelper::PositionInCharAllocator Bug: Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel Change-Id: Iee7fb16e44637489a155101e4cc39e128e45acc4 Reviewed-on: https://chromium-review.googlesource.com/788283 Commit-Queue: Yi Xu <yiyix@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#521380}
-
Katie Dektar authored
Adds a function to SpeechMonitor to block until a stop event is called. This will be used in later tests. Bug: 789598 Change-Id: Id25069e60d472eed3bf363e9cf597d2fe07d91e2 Reviewed-on: https://chromium-review.googlesource.com/804415 Commit-Queue: Katie D <katie@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#521379}
-
Scott Violet authored
In certain cases views are not given their preferred width. When this happens we need to be sure to ask for the preferred height for the width as the preferred height may depend upon the width. This came up in converting a dialog to harmony. BUG=none TEST=covered by test Change-Id: Ia67ddf22d35612bc800ded69b873a524e9cc6853 Reviewed-on: https://chromium-review.googlesource.com/804937Reviewed-by:
Elliot Glaysher <erg@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#521378}
-
Koji Ishii authored
Following bot results are included. 2318 2319 2321 2322 2325 2326 2328 2331 2332 2334 2336 2337 2338 2340 2342 2343 2344 2350 2352 2358 2362 2365 2368 2369 2370 2372 2 lines were removed by consecutive passes since 2318. TBR=eae@chromium.org NOTRY=true Bug: 591099 Change-Id: I3d9f9fbe6dec7f5bcc1dec085ca5dca04224a174 Reviewed-on: https://chromium-review.googlesource.com/806234Reviewed-by:
Koji Ishii <kojii@chromium.org> Commit-Queue: Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#521377}
-
Sriram authored
Convert track tests that are using js-test.js to use testharness.js instead. This will enable to upstream these tests to wpt tests. Bug: 782555 Change-Id: I6f1541cbe756cda8966ce47b3a93152e14d7e722 Reviewed-on: https://chromium-review.googlesource.com/806254Reviewed-by:
Fredrik Söderquist <fs@opera.com> Commit-Queue: srirama chandra sekhar <srirama.m@samsung.com> Cr-Commit-Position: refs/heads/master@{#521376}
-
webrtc-autoroll@chromium.org authored
https://webrtc.googlesource.com/src.git/+log/87ed4487e40d..a9f469b2184d $ git log 87ed4487e..a9f469b21 --date=short --no-merges --format='%ad %ae %s' Created with: roll-dep src/third_party/webrtc BUG=None The AutoRoll server is located here: https://webrtc-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: I017d5f74413cf365c2666fe447f03b74d0246059 Reviewed-on: https://chromium-review.googlesource.com/806635Reviewed-by:
WebRTC Roll Bot <webrtc-autoroll@chromium.org> Commit-Queue: WebRTC Roll Bot <webrtc-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#521375}
-
Quinten Yearsley authored
Bug: 736177 Change-Id: I9342daddcfb032a366c2178f2c78e54dda0757a6 Reviewed-on: https://chromium-review.googlesource.com/801231Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Quinten Yearsley <qyearsley@chromium.org> Cr-Commit-Position: refs/heads/master@{#521374}
-
Katie Dektar authored
Includes 'invisible' and size/location/clipping as well. Change-Id: I0841060a41d7d4cff823a309bc7cde6cfc9d46ec Reviewed-on: https://chromium-review.googlesource.com/797898 Commit-Queue: Katie D <katie@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#521373}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/a0985d960fb7..ea6138253bda $ git log a0985d960..ea6138253 --date=short --no-merges --format='%ad %ae %s' 2017-12-04 kjlubick Add additional dimension for Valgrind bots 2017-12-04 kjlubick Add 2 bots to CQ 2017-12-04 bsalomon Avoid coverage aa for filled drrects when using msaa. 2017-12-04 robertphillips Revert "Add unit test for SkDeferredDisplayLists" 2017-12-01 csmartdalton Fix setjmp/longjump usage in JPEG error handling 2017-12-04 robertphillips Add unit test for SkDeferredDisplayLists 2017-12-04 bsalomon Disable SkImage multitexturing for AMD GPUs. 2017-12-04 robertphillips Revert "Revert "Enable explicit GPU resource allocation"" Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=rmistry@chromium.org Change-Id: I09442e157f6f1bfdca2d1c95699ffd7cde62d584 Reviewed-on: https://chromium-review.googlesource.com/806419Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#521372}
-
Myung-jong Kim authored
Bug: 706285 Change-Id: I19af8517f4cc561a30afb25ca3b3150a8dd41b12 Reviewed-on: https://chromium-review.googlesource.com/805515Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#521371}
-
Matthew Jones authored
BUG=779615 Change-Id: I64e8c90cc9ed4302fad0f31abeffb882a82dc9da Reviewed-on: https://chromium-review.googlesource.com/804819Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#521370}
-
Danyao Wang authored
Current implementation of WKBasedNavigationManagerImpl::Restore() does not reset the internal previous item, pending item and last committed item index caches. This leaves the navigation manager in a corrupted state and is the cause of several egtest failures. Added unit test to cover this case. Bug: 781916 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I5d1777dfc5f9625c0e3ab6ae352cf82d60201834 Reviewed-on: https://chromium-review.googlesource.com/803637Reviewed-by:
Eugene But <eugenebut@chromium.org> Commit-Queue: Danyao Wang <danyao@chromium.org> Cr-Commit-Position: refs/heads/master@{#521369}
-
Boris Sazonov authored
Signin promo shouldn't be shown if no new accounts were added. This CL also adds appropriate test. Bug: 721544 Change-Id: Ibf28009181d0118bf86e066bd3bd41c058d83d92 Reviewed-on: https://chromium-review.googlesource.com/803351Reviewed-by:
Nicolas Dossou-Gbété <dgn@chromium.org> Commit-Queue: Boris Sazonov <bsazonov@chromium.org> Cr-Commit-Position: refs/heads/master@{#521368}
-
Yuke Liao authored
This CL adds the first version of the code coverage script, which is able to generate line by line code coverage report in html for files involved when running test targets. Bug: 784464 Change-Id: I0b8f894ca424e02c3e8a3176d2988df0a2e9d239 Reviewed-on: https://chromium-review.googlesource.com/764949Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Commit-Queue: Yuke Liao <liaoyuke@chromium.org> Cr-Commit-Position: refs/heads/master@{#521367}
-
Francois Doray authored
LowMemoryMargin is a per-platform constant. There is no need to have a LowMemoryMargin suffix on histograms. This suffix should have been deprecated in 2013 https://chromiumcodereview.appspot.com/13993008 Bug: 775644 Change-Id: I2a809be0dadf3351d7a2f37efe981ac304cd8cdf Reviewed-on: https://chromium-review.googlesource.com/806357Reviewed-by:
Gayane Petrosyan <gayane@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#521366}
-
John Budorick authored
This also moves device setup out of the driver, allowing us to set up the devices without creating driver instances for the sole purpose of doing so. Bug: 784303 Change-Id: I948a3f9a2c6d69e76b42bbc7f1e239a3adb92206 Reviewed-on: https://chromium-review.googlesource.com/786778Reviewed-by:
Quinten Yearsley <qyearsley@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#521365}
-
Alexei Svitkine authored
Was double-checking the logic here and realized we didn't have any unit test coverage for CompareToWildcardString when wildcards are not passed to it. BUG=none Change-Id: I5c30032138b2fc28e3fdaa590756e95dae829234 Reviewed-on: https://chromium-review.googlesource.com/804755 Commit-Queue: Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#521364}
-
Francois Doray authored
This method returns a unique id representing the LifecycleUnit. It is required to support the chrome://discards/ page. Bug: 775644 Change-Id: I5975e625337708cc57beca0a5d551e6352c51b6a Reviewed-on: https://chromium-review.googlesource.com/789250 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#521363}
-
catapult-deps-roller@chromium.org authored
https://chromium.googlesource.com/catapult.git/+log/c796cbc3a6e6..a12fb2d1ad96 $ git log c796cbc3a..a12fb2d1a --date=short --no-merges --format='%ad %ae %s' 2017-12-04 ulan Add GC-Background-* runtime-call-stats metrics. Created with: roll-dep src/third_party/catapult The AutoRoll server is located here: https://catapult-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=sullivan@chromium.org Change-Id: Ib25ddee4f4657069054ebfa2d6d7bd9ec961d166 Reviewed-on: https://chromium-review.googlesource.com/806515 Reviewed-by: <catapult-deps-roller@chromium.org> Commit-Queue: <catapult-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#521362}
-
Greg Thompson authored
r516772 was the last of many commits that resolved a number of problems that made this test suite flaky on Windows. This CL enables tests that had been disabled over time due to flakes, yet now seem to run okay. BUG=421116,764415 This CL was uploaded by git cl split. R=aleventhal@chromium.org Change-Id: I4a673a21eaab43d7dbce3bc121bd7cb8a704b3ba Reviewed-on: https://chromium-review.googlesource.com/785013 Commit-Queue: Greg Thompson <grt@chromium.org> Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#521361}
-
Tobias Sargeant authored
Bug: 618472,790008 Change-Id: I663d380d14c927890a0863f4cb3158c2db1be408 Reviewed-on: https://chromium-review.googlesource.com/801017Reviewed-by:
Richard Coles <torne@chromium.org> Commit-Queue: Tobias Sargeant <tobiasjs@chromium.org> Cr-Commit-Position: refs/heads/master@{#521360}
-
Marc Treib authored
The visible URL doesn't always correspond to the actual page that's loaded. For example, if the user types in a URL that ends up being a download, then the visible URL corresponds to the download, but the NTP is still there and should remain functional. Bug: 592273, 624410 Change-Id: Ib2e0a7df8658e55030ee5e67959a0ebc486e495d Reviewed-on: https://chromium-review.googlesource.com/800931Reviewed-by:
Chris Pickel <sfiera@chromium.org> Commit-Queue: Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#521359}
-
Nektarios Paisios authored
According to HTML to platform accessibility mappings 1.1 native text boxes input and textarea, but not content editables, should get an ARIA role of textbox. I went through all our code in Blink and observed that aria-autocomplete was the only case where we didn't apply the same treatment to ARIA and native text controls. R=aleventhal@chromium.org, dmazzoni@chromium.org Bug: 761230 Change-Id: Ie25e0b072b24f1f6ebf6d5b2e317b656fb463fdf Tested: manually, browser test Reviewed-on: https://chromium-review.googlesource.com/804915 Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#521358}
-
Sadrul Habib Chowdhury authored
By default, mus will not host viz when chrome is run with --mus. Instead, it will expect chrome to host viz. mus will continue to always host viz when chrome is run with --mash. Bug: 786453 Change-Id: Ifea1a6a953d3e4d20b9d624e156c627a0122a344 Reviewed-on: https://chromium-review.googlesource.com/798776 Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#521357}
-
Julia Tuttle authored
We've decided to persist using SQLite, so there's no periodic "persist everything" task that needs to happen, so the ReportingPersister no longer needs to exist. Bug: Change-Id: If229bc8cc5b946385c1f2934021b553cc5ae48fc Reviewed-on: https://chromium-review.googlesource.com/797852 Commit-Queue: Julia Tuttle <juliatuttle@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#521356}
-
Julia Tuttle authored
Origins shouldn't need to remember and explicitly remove every deprecated endpoint they've used in the past. This change alters the header parsing behavior so any endpoint that was configured for an origin but is not included in a new header from that origin will be removed. Change-Id: I87590e00340684ad3deaefe5ff2a2939d904a983 Reviewed-on: https://chromium-review.googlesource.com/797737 Commit-Queue: Julia Tuttle <juliatuttle@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#521355}
-
Florent Castelli authored
Bug: 412381 Change-Id: Ieb4dd69470e1ca61643ae05eee61b49afc406eea Reviewed-on: https://chromium-review.googlesource.com/806156Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Commit-Queue: Philip Jägenstedt <foolip@chromium.org> Cr-Commit-Position: refs/heads/master@{#521354}
-
Sadrul Habib Chowdhury authored
With mus, OzonePlatform is created in the mus-ws thread, and it can be accessed from the IO thread in GpuProcessHost. There is a race here, since the IO thread and the mus-ws thread do not know about each other. So, instead of immediately talking to the OzonePlatform instance from GpuProcessHost, register a callback that gets run once the instance is created and initialized. This way, with regular chrome (where OzonePlatform is created on the UI thread), the callback is run immediately. But with mus, it waits until the OzonePlatform instance is available. BUG=786453 Change-Id: I9c4553333ef29d5541cf3b65fed475c3cc7ef2db Reviewed-on: https://chromium-review.googlesource.com/794103 Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Michael Spang <spang@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Cr-Commit-Position: refs/heads/master@{#521353}
-
Francois Doray authored
With this CL, TabLifecycleUnit is renamed to TabLifecycleUnitExternal and it no longer inherits from LifecycleUnit. The name "TabLifecycleUnitExternal" makes it clear that this interface is exposed outside of chrome/browser/resource_coordinator/, and not inheriting from LifecycleUnit restricts what's available outside of chrome/browser/resource_coordinator/. Also, this CL removes TabLifecycleUnitHolder. TabLifecycleUnitExternal::FromWebContents will be implemented by a map lookup in TabLifecycleUnitSource. Bug: 775644 Change-Id: Ia8fa3b3a8c7f1d4289fc15f3f4d983192dda4db6 Reviewed-on: https://chromium-review.googlesource.com/788271 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#521352}
-
Mohamad Ahmadi authored
currently foo.bar@example.com gets converted to foobar@example.com which gets saved as part of a server card' billing address. This is different from the behavior in other platforms which results in a nearly duplicate autofill profile getting synced across platforms. Bug: 767445 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I23947f3ae1c7d35ada590e4165f5c2f52744b652 Reviewed-on: https://chromium-review.googlesource.com/804056Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Jérôme Lebel <jlebel@chromium.org> Commit-Queue: Moe Ahmadi <mahmadi@chromium.org> Cr-Commit-Position: refs/heads/master@{#521351}
-
John Abd-El-Malek authored
Disable http/tests/inspector-protocol/network/response-interception-main-resource-cross-origin.js with network service which started failing when it was added in r521009 NOTRY=true TBR=falken@chromium.org Bug: Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Change-Id: I9915d28f5c61f2ffa4d46b8505cb625fffefac94 Reviewed-on: https://chromium-review.googlesource.com/806423 Commit-Queue: John Abd-El-Malek <jam@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#521350}
-
Justin Cohen authored
Bug: 789658 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: Ie58dc41f31ade019ca2ea93cd9f28a89ee6e50b6 Reviewed-on: https://chromium-review.googlesource.com/804154Reviewed-by:
Gauthier Ambard <gambard@chromium.org> Commit-Queue: Justin Cohen <justincohen@chromium.org> Cr-Commit-Position: refs/heads/master@{#521349}
-
webrtc-autoroll@chromium.org authored
https://webrtc.googlesource.com/src.git/+log/22a77a1b1d9c..87ed4487e40d $ git log 22a77a1b1..87ed4487e --date=short --no-merges --format='%ad %ae %s' Created with: roll-dep src/third_party/webrtc BUG=None The AutoRoll server is located here: https://webrtc-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: I71d794474b0b2883086efa8b3d1b87d568d87449 Reviewed-on: https://chromium-review.googlesource.com/806417Reviewed-by:
WebRTC Roll Bot <webrtc-autoroll@chromium.org> Commit-Queue: WebRTC Roll Bot <webrtc-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#521348}
-
Gyuyoung Kim authored
base/memory/ptr_util.h includes are changed with <memory> as well. Bug: 755727 Change-Id: I1beb698b992a863896bd1a63c4ed3801a9a87a5a Reviewed-on: https://chromium-review.googlesource.com/802850Reviewed-by:
Richard Coles <torne@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung.kim@lge.com> Cr-Commit-Position: refs/heads/master@{#521347}
-
Camillo Bruni authored
Change-Id: Ib50dbd2d3785cb5e72a5dd8381db8d7220a86446 Reviewed-on: https://chromium-review.googlesource.com/803475 Commit-Queue: Camillo Bruni <cbruni@chromium.org> Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Cr-Commit-Position: refs/heads/master@{#521346}
-