- 15 Mar, 2018 33 commits
-
-
Conley Owens authored
This change adds a boolean `was_cached` to the SubresourceLoadInfo struct. This lets consumers know whether or not the response was fetched from the network cache. Notably, this is important for recording page load metrics when the Network Service is enabled. BUG=816684 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Change-Id: I28d60ff7286feca5d333203405ee9c351f43c0ab Reviewed-on: https://chromium-review.googlesource.com/938650Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Jay Civelli <jcivelli@chromium.org> Commit-Queue: Conley Owens <cco3@chromium.org> Cr-Commit-Position: refs/heads/master@{#543276}
-
Scott Chen authored
This CL fixes a few things that broke during a merge: - ID name change messed up by merge - paper-icon-button-light new syntax Bug: 819862 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I072a4e6127ca87ba9035a6a83f87bfa4cf4290af Reviewed-on: https://chromium-review.googlesource.com/961535 Commit-Queue: Scott Chen <scottchen@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#543275}
-
Dmitry Gozman authored
This token is globally-unqiue and has the same value between browser and renderer. By using it in trace events, one can match frame attribution for browser and renderer trace events. This will be used to at least support OOPIFs in DevTools Performance panel in the future. Bug: 820250 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I932be92154220731dfdc5998614c281b419dc1aa Reviewed-on: https://chromium-review.googlesource.com/956522 Commit-Queue: Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#543274}
-
Alice Boxhall authored
TBR=spqchan Bug: 822022 Change-Id: I68245d38a79fc9698f9528261f910c8eba822d48 Reviewed-on: https://chromium-review.googlesource.com/963151 Commit-Queue: Alice Boxhall <aboxhall@chromium.org> Reviewed-by:
Sarah Chan <spqchan@chromium.org> Reviewed-by:
Alice Boxhall <aboxhall@chromium.org> Cr-Commit-Position: refs/heads/master@{#543273}
-
John Chen authored
Change-Id: Ia49dbb7244b3697601ac5704a218af25e9a6b05f Reviewed-on: https://chromium-review.googlesource.com/963731Reviewed-by:
Caleb Rouleau <crouleau@chromium.org> Commit-Queue: John Chen <johnchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#543272}
-
chaopeng authored
In this patch, we remove the rails configuration on Direct Manipulation. The rails configuration would restrict scroll events on X or Y rails. After this changes, user able to scroll to any direction by touchpad as touch screen on Windows, Android and touchpad on Edge. Bug: 779372 Change-Id: Idf1da1eb85c2a73f432b78b0002fde28609a4cfe Reviewed-on: https://chromium-review.googlesource.com/963043Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Jianpeng Chao <chaopeng@chromium.org> Cr-Commit-Position: refs/heads/master@{#543271}
-
Daniel Cheng authored
Change-Id: I8327f38e0cb1c96bb92b0b19a291d21b1a8b36b1 Reviewed-on: https://chromium-review.googlesource.com/961736Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#543270}
-
Bill Orr authored
VrInputConnection stores a callback to call when a request completes. If another request comes in, the callback is overwritten, and the new callback will be called. The second request will not have a callback to call, breaking assumptions and crashing. The fix is to queue callbacks to handle multiple outstanding requests. Bug: 821990 Change-Id: I937136bc5291805b5a421f162c4ec175d511867b Reviewed-on: https://chromium-review.googlesource.com/963695Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Commit-Queue: Bill Orr <billorr@chromium.org> Cr-Commit-Position: refs/heads/master@{#543269}
-
Josh Horwich authored
Update the logic to decide if ARC OptIn dialog is shown for managed users to only skip it if both ArcBackupRestoreEnabled and ArcLocationServiceEnabled are managed and false. BUG=b:73339871 TEST=unit_tests, Opt in to ARC++ with Managed User Change-Id: Ibf5a513f0559f511ef386042da7a227af9d4af89 Reviewed-on: https://chromium-review.googlesource.com/963003 Commit-Queue: Josh Horwich <jhorwich@chromium.org> Reviewed-by:
Luis Hector Chavez <lhchavez@chromium.org> Reviewed-by:
Yury Khmel <khmel@chromium.org> Cr-Commit-Position: refs/heads/master@{#543268}
-
Ned Nguyen authored
Change-Id: I5d39a8e928695164a18179f9a907c8af3fc1f6f0 Reviewed-on: https://chromium-review.googlesource.com/962985 Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Robbie Iannucci <iannucci@chromium.org> Cr-Commit-Position: refs/heads/master@{#543267}
-
Dmitry Gozman authored
When the frame has already been detached, Client() will be nullptr. Since we can call LocalWindowProxy methods even when detached, e.g. through ToV8ContextEvenIfDetached(), we should null-check the client. This is a band-aid fix, because we actually should not initialize context on a detached frame and change ToV8ContextEvenIfDetached to never force context. However, the proper solution has many risks and needs additional investigation. Bug: 805882 Change-Id: Idcd6bbc0e6eec9b2de53acfb646b30bd9636d797 Reviewed-on: https://chromium-review.googlesource.com/949603 Commit-Queue: Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Yuki Shiino <yukishiino@chromium.org> Cr-Commit-Position: refs/heads/master@{#543266}
-
edchin authored
This CL also renames some other assets for naming consistency. Bug: 818198 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I1b603f16740e5ac5279533ea39db6f9d3ab1088a Reviewed-on: https://chromium-review.googlesource.com/962832Reviewed-by:
edchin <edchin@chromium.org> Reviewed-by:
Sergio Collazos <sczs@chromium.org> Commit-Queue: edchin <edchin@chromium.org> Cr-Commit-Position: refs/heads/master@{#543265}
-
Xianzhu Wang authored
Use ClampSub on integer values instead of clampTo<int> on float values. This can improve record time by 3% on Android (https://pinpoint-dot-chromeperf.appspot.com/job/14d64d9e440000 click "Analyze benchmark results). Change-Id: I8521a93caf821c551f342c551b5de84b6e35e092 Bug: 820467 Reviewed-on: https://chromium-review.googlesource.com/958292Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#543264}
-
Fredrik Hubinette authored
Avoid calling pow() on negative numbers as that causes undefined behavior in the shader. Bug: 821967 Change-Id: Iab3dc9840c17d90aa5952adf17b8b24e2890d055 Reviewed-on: https://chromium-review.googlesource.com/962969Reviewed-by:
ccameron <ccameron@chromium.org> Commit-Queue: Fredrik Hubinette <hubbe@chromium.org> Cr-Commit-Position: refs/heads/master@{#543263}
-
Mike Klein authored
We used to build the .S files with -ffp-contract=fast for this, and adding it here to the HSW opts will have the equivalent effect. None of the other x86 targets support FMAs. In many key places we do call _mm256_fmadd_ps explicitly, but in several other stages we have been relying on Clang to sniff out opportunities, especially for fused-multiply-subtracts, which we're just not very good at seeing in our heads. Bug: 821012 Change-Id: I2767cbdb7151d60ea7553e83f51b28ff9340eb94 Reviewed-on: https://chromium-review.googlesource.com/963141Reviewed-by:
Florin Malita <fmalita@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org> Cr-Commit-Position: refs/heads/master@{#543262}
-
Alice Boxhall authored
Bug: 820761 Change-Id: I910fede13345b2159aca28a418887d75e5c2b201 Reviewed-on: https://chromium-review.googlesource.com/958643Reviewed-by:
Paul Irish <paulirish@chromium.org> Reviewed-by:
Andrey Lushnikov <lushnikov@chromium.org> Commit-Queue: Andrey Lushnikov <lushnikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#543261}
-
Alexander Alekseev authored
Bug: 794371 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I89faadd5eeda922bcd8f7aad3180e47a65400d59 Reviewed-on: https://chromium-review.googlesource.com/963683 Commit-Queue: Alexander Alekseev <alemate@chromium.org> Reviewed-by:
Wenzhao (Colin) Zang <wzang@chromium.org> Cr-Commit-Position: refs/heads/master@{#543260}
-
Kouhei Ueno authored
We have planned to implement streaming CBOR parser, but the plan changed. Bug: 803774 Change-Id: I281d6ad20e213d786a48e0cf6171c2dea403393b Reviewed-on: https://chromium-review.googlesource.com/963150Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Tsuyoshi Horo <horo@chromium.org> Commit-Queue: Kouhei Ueno <kouhei@chromium.org> Cr-Commit-Position: refs/heads/master@{#543259}
-
Becky Zhou authored
+ Make expand icon right aligned for the expandable header with 16dp right padding Bug: 821462 Change-Id: I17f24f891013479c3297e062e5e72f04c1257115 Reviewed-on: https://chromium-review.googlesource.com/960925Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Becky Zhou <huayinz@chromium.org> Cr-Commit-Position: refs/heads/master@{#543258}
-
rbpotter authored
Since the final PDF from print preview is now sent directly to the printer in all cases, the PDF should be regenerated in all cases where the user changes a setting that should modify the final PDF, including "Print as Image". Bug: 813267 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I49202c782c35209d319f146b272dd49c2d0cfd07 Reviewed-on: https://chromium-review.googlesource.com/963282Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Rebekah Potter <rbpotter@chromium.org> Cr-Commit-Position: refs/heads/master@{#543257}
-
Alice Boxhall authored
TBR=sammiequon@chromium.org Bug: 822049 Change-Id: I25c7cf6bd7d4f1641c37afaaa176d7b24f674c39 Reviewed-on: https://chromium-review.googlesource.com/963153Reviewed-by:
Alice Boxhall <aboxhall@chromium.org> Commit-Queue: Alice Boxhall <aboxhall@chromium.org> Cr-Commit-Position: refs/heads/master@{#543256}
-
Donn Denman authored
Fixes the recent regression with tap gesture recognition in Reader mode tabs. Converting a tab to show the simplified view is one of the rare times when we get a new CVC or WebContents for the same tab. With this change we check if the tab is connected to a different WebContents and create a new observer when it is. BUG=821676 Change-Id: I8ba56ffba42a6ca9c138c2cd1c387e398cc27591 Reviewed-on: https://chromium-review.googlesource.com/962992Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Donn Denman <donnd@chromium.org> Cr-Commit-Position: refs/heads/master@{#543255}
-
Qiang Xu authored
changes: Declare methods in AccessibilityFocusRingController that chrome needs in mojo interface. Bug: 594887 Change-Id: I5d8b47eb91301e848e2a2d3d13ad60b946db8a65 Reviewed-on: https://chromium-review.googlesource.com/957524 Commit-Queue: Qiang Xu <warx@google.com> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#543254}
-
edchin authored
Removes dead and unnecessary code. Bug: 818198 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I468a5018ec794b4c921f569362d37f1da3d1d6a5 Reviewed-on: https://chromium-review.googlesource.com/963319Reviewed-by:
Sergio Collazos <sczs@chromium.org> Reviewed-by:
edchin <edchin@chromium.org> Commit-Queue: edchin <edchin@chromium.org> Cr-Commit-Position: refs/heads/master@{#543253}
-
Jay Civelli authored
This CL fixes the SecurityIndicatorTest.CheckIndicatorText with the network service by using a URLLoaderInterceptor. Bug: 776589 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Change-Id: I25cecf5301b2b963a8c64cb515c45d6cdd74cf31 Reviewed-on: https://chromium-review.googlesource.com/961449Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: Jay Civelli <jcivelli@chromium.org> Cr-Commit-Position: refs/heads/master@{#543252}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 20ce9b76. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/13844 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 Directory owners for changes in this CL: dgrogan@chromium.org: external/wpt/css/css-tables drott@chromium.org, kojii@chromium.org: external/wpt/css/css-fonts jfernandez@igalia.com: external/wpt/css/css-align jinho.bang@samsung.com, mathp@chromium.org, rouslan@chromium.org: external/wpt/payment-handler jsbell@chromium.org: external/wpt/IndexedDB jsbell@chromium.org, mek@chromium.org: external/wpt/FileAPI mek@chromium.org: external/wpt/webmessaging TBR=leon.han@intel.com No-Export: true Change-Id: I54188d8fa4d3b434ea6f8b3ea067f34c2bd98a65 Reviewed-on: https://chromium-review.googlesource.com/963500 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@{#543251}
-
Nicholas Verne authored
Bug: 814626 Change-Id: I8d4622c78b6e2404c7012f28319cbe8ca37690d9 Reviewed-on: https://chromium-review.googlesource.com/938543Reviewed-by:
James Cook <jamescook@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Commit-Queue: Nicholas Verne <nverne@chromium.org> Cr-Commit-Position: refs/heads/master@{#543250}
-
Jinsuk Kim authored
It is possible that a few android.view.View APIs are called after WebContents gets destroyed. This CL keeps them from accessing the destroyed instance by safeguarding it at ContentView where they pass through. Alternatively this could be done at embedder level (i.e. parent view of ContentView), but this approach reduces duplicated code. And re-enabled the disabled test. Bug: 821750 Change-Id: Ied55e7d36c589e6e7e324d081204c9a1294da7b2 Reviewed-on: https://chromium-review.googlesource.com/963149Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Cr-Commit-Position: refs/heads/master@{#543249}
-
Tom Anderson authored
BrowserNavigatorTest.SingletonProfileLeak fails on browser_tests, viz_browser_tests, site_per_process_browser_tests, and network_service_browser_tests. Failures seen on "Linux Tests (dbg)(1)" and "Linux Tests (dbg)(1)(32)". Failures: https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/Linux%20Tests%20%28dbg%29%281%29/70940 https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/Linux%20Tests%20%28dbg%29%281%29/70937 https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/Linux%20Tests%20%28dbg%29%281%29/70933 https://ci.chromium.org/buildbot/chromium.linux/Linux%20Tests%20%28dbg%29%281%29%2832%29/48775 https://ci.chromium.org/buildbot/chromium.linux/Linux%20Tests%20%28dbg%29%281%29%2832%29/48771 https://ci.chromium.org/buildbot/chromium.linux/Linux%20Tests%20%28dbg%29%281%29%2832%29/48767 BUG=822033 TBR=sky Change-Id: I90a1c3d76eab9139d70f0b8da0a22cf883e1d32f Reviewed-on: https://chromium-review.googlesource.com/963090Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Cr-Commit-Position: refs/heads/master@{#543248}
-
Xing Liu authored
This CL passes BlobDataHandle to client, which contains in memory download data. The blob data handle is copied through the pipeline. Internally BlobDataHanle has thread safe reference counting. When the download is succeeded, InMemoryDownload will be deleted and the client should be the only holder of the blob data handle. TBR=jsbell@chromium.org Bug: 809676,766299 Change-Id: I1ec15d10b363b306392574269cbc1e2e15f08004 Reviewed-on: https://chromium-review.googlesource.com/956535 Commit-Queue: Xing Liu <xingliu@chromium.org> Reviewed-by:
David Trainor <dtrainor@chromium.org> Cr-Commit-Position: refs/heads/master@{#543247}
-
Gyuyoung Kim authored
Although issue 22852008 limited to use skia font cache for Android, we also need to limit to use the skia font cache for other low-end devices like Android. However, it's hard to estimate the overall memory usage of the skia font cache per each low-end device. So it would be good if we give them the power to limit to use the font cache. This CL introduces a new command line switch to limit the skia font cache size. Bug: 274452 Change-Id: Ia6bca318aab9514d5b66290826afda897747256d Reviewed-on: https://chromium-review.googlesource.com/961745Reviewed-by:
Antoine Labour <piman@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung.kim@lge.com> Cr-Commit-Position: refs/heads/master@{#543246}
-
Yuwei Huang authored
Previously tapping a link on the help page has no effect because the links have target="_blank" attribute and we haven't properly set up the WebViewController to handle that. This CL makes the app open a target="_blank" link using the default browser, aka Safari. Bug: 821955 Change-Id: I1557a37d9b1a341186ee1b59fec1de77f075da1a Reviewed-on: https://chromium-review.googlesource.com/963690Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Commit-Queue: Yuwei Huang <yuweih@chromium.org> Cr-Commit-Position: refs/heads/master@{#543245}
-
Steve Kobes authored
The code to do this was behind an "if (!RLS)" block, which was added by http://crrev.com/437671, but we need it with RLS also. Otherwise, non- composited sticky elements don't force main-thread scrolling, and jitter as the compositor tries to scroll them. This fix causes a test to reveal an existing bug in LayoutGeometryMap (see crbug.com/821216). Bug: 820921 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I0227b994fcabb84b3edbaa4c73943667a88b1ea5 Reviewed-on: https://chromium-review.googlesource.com/959567 Commit-Queue: Steve Kobes <skobes@chromium.org> Reviewed-by:
Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/master@{#543244}
-
- 14 Mar, 2018 7 commits
-
-
Jinsuk Kim authored
Moved 2 selection-related APIs from ContentViewCore to SelectionPopupController: - preserveSelectionOnNextLossOfFocus - updateTextSelectionUI Bug: 598880 Change-Id: I7c944390c2d244902599d7a0c78568e6d512494e Reviewed-on: https://chromium-review.googlesource.com/956786Reviewed-by:
Tommy Nyquist <nyquist@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Cr-Commit-Position: refs/heads/master@{#543243}
-
mark a. foltz authored
This is a reland of aa57fe6d Original change's description: > [Media Router] Converts integration tests to run on Chromium waterfall. > > This updates the Media Router integration tests so they run in the > Chromium waterfall with the open source Media Router component > extension and its mock (test) Media Route Provider. > > Additional changes: > > - Removes extension from top level BUILD.gn as it is only used for > browser tests at the moment. > - Splits the targets for Media Router browser tests into integration tests > (part of main browser_tests suite), e2e tests (which require the > external component extension), perf tests, and shared support code. > - Renames the "test" extension to the "telemetry" extension used for perf > tests to avoid confusion. > - Updates README files > - One test is not compatible with the Chromium component and need > to be fixed. Bugs 818767 filed for follow-up. > > Bug: 698796 > Change-Id: I6cc9302ffd72de95630ce33ca3617b3b73b9e722 > Reviewed-on: https://chromium-review.googlesource.com/917214 > Commit-Queue: mark a. foltz <mfoltz@chromium.org> > Reviewed-by: Scott Violet <sky@chromium.org> > Reviewed-by: Derek Cheng <imcheng@chromium.org> > Cr-Commit-Position: refs/heads/master@{#543005} TBR=cliffordcheng, imcheng, jrw, sky Bug: 698796,822029, 821717 Change-Id: Ie5c2fdc9a838dec2906a73f7827fa6ceafdcce1b Reviewed-on: https://chromium-review.googlesource.com/963064 Commit-Queue: mark a. foltz <mfoltz@chromium.org> Reviewed-by:
mark a. foltz <mfoltz@chromium.org> Cr-Commit-Position: refs/heads/master@{#543242}
-
Emircan Uysaler authored
This is a reland of 1f31a184 Original change's description: > Stop using GpuMemoryBufferVideoFramePool when WebMediaPlayerMS is hidden > > This CL adds calls to track when WebMediaPlayerMS is hidden or shown, so > that in the time period we can skip creating GMB backed frames. For that > time period, frames aren't going to be displayed, so copying them to GMBs > is extra work which should be avoided. > > Bug: 653200 > Change-Id: I67e55c7f1150b434d82321ac90a08c7c3e3e6336 > Reviewed-on: https://chromium-review.googlesource.com/954339 > Reviewed-by: Daniele Castagna <dcastagna@chromium.org> > Reviewed-by: Dan Sanders <sandersd@chromium.org> > Commit-Queue: Emircan Uysaler <emircan@chromium.org> > Cr-Commit-Position: refs/heads/master@{#542950} Bug: 653200 TBR: sandersd@chromium.org, dcastagna@chromium.org Change-Id: I277eca14cac19e80b4b00dae75188842d7b49c97 Reviewed-on: https://chromium-review.googlesource.com/963581Reviewed-by:
Emircan Uysaler <emircan@chromium.org> Commit-Queue: Emircan Uysaler <emircan@chromium.org> Cr-Commit-Position: refs/heads/master@{#543241}
-
Ian Clelland authored
Change-Id: Ic18a8df18f32710a54bbc67f81a0776b1b22626b Reviewed-on: https://chromium-review.googlesource.com/962676Reviewed-by:
Luna Lu <loonybear@chromium.org> Commit-Queue: Ian Clelland <iclelland@chromium.org> Cr-Commit-Position: refs/heads/master@{#543240}
-
Caleb Rouleau authored
This reverts commit a8cf1a86. Reason for revert: added faking test case TCPSocketTest.ReadAndWriteMultiple BUG: 822058 Original change's description: > Reland: Add TCP socket API to network service > > This CL adds TCP socket API to network service. > This is partly based on mandoline implementation > (https://codereview.chromium.org/1873463003/) > > Two TCP socket interfaces are added. > - TCPConnectedSocket > - TCPServerSocket > > Change in reland: > - adds logging to TCPSocketTest.ReadAndWriteMultiple to investigate > the test timeout observed in crbug.com/821232 > - Modifies TestServer slightly to own all client connections instead > of only the latest one. > > R=mmenke@chromium.org > TBR=miu@chromium.org > TBR=tsepez@chromium.org > > Bug: 721401 > Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo > Change-Id: I0426a7aeda30cce7a2a1e84afae5208958dc4a10 > Reviewed-on: https://chromium-review.googlesource.com/960250 > Commit-Queue: Helen Li <xunjieli@chromium.org> > Reviewed-by: Helen Li <xunjieli@chromium.org> > Reviewed-by: Matt Menke <mmenke@chromium.org> > Cr-Commit-Position: refs/heads/master@{#543064} TBR=miu@chromium.org,mmenke@chromium.org,tsepez@chromium.org,xunjieli@chromium.org Change-Id: I078642396307e5eb20853a12596d931e0bb30d88 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 721401 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Reviewed-on: https://chromium-review.googlesource.com/963667Reviewed-by:
Caleb Rouleau <crouleau@chromium.org> Commit-Queue: Caleb Rouleau <crouleau@chromium.org> Cr-Commit-Position: refs/heads/master@{#543239}
-
Jay Civelli authored
Removes UtilityProcessHost from content/public and renames UtilityprocessHostImpl to UtilityProcessHost. Now that all use cases of UtilityProcessHost have been replaced by using services (but for the PowerMonitor browser tests), this will prevent further forking of process bypassing the service manager. Bug: 775677 Change-Id: I2107271a54e4ab3141102a5c4fbcce4ea21915dd Reviewed-on: https://chromium-review.googlesource.com/961496Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Commit-Queue: Jay Civelli <jcivelli@chromium.org> Cr-Commit-Position: refs/heads/master@{#543238}
-
Li Lin authored
Change-Id: I382c31196514ca276f4ba49cfd0ea21b3697ed73 Reviewed-on: https://chromium-review.googlesource.com/957344 Commit-Queue: Li Lin <llin@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Cr-Commit-Position: refs/heads/master@{#543237}
-