- 06 Nov, 2018 40 commits
-
-
Pavel Shmakov authored
The notification offers to manage site data and to share info about the webpage. The notification is shown while the activity is started. It is not removed when the user leaves the origin associated with the app by following links. Bug: 888953 Change-Id: I297e4090b03c081b901a1339f25485ab63640104 Reviewed-on: https://chromium-review.googlesource.com/c/1307400 Commit-Queue: Pavel Shmakov <pshmakov@chromium.org> Reviewed-by:
Peter Conn <peconn@chromium.org> Reviewed-by:
Yusuf Ozuysal <yusufo@chromium.org> Cr-Commit-Position: refs/heads/master@{#605800}
-
Maks Orlovich authored
This is an application of review feedback from https://chromium-review.googlesource.com/c/chromium/src/+/1310638 ... that I somehow managed to forget to upload. Change-Id: I972d4e5a8722d0f3ef2684587cdb4911636c1575 Reviewed-on: https://chromium-review.googlesource.com/c/1318358Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Maks Orlovich <morlovich@chromium.org> Cr-Commit-Position: refs/heads/master@{#605799}
-
Robert Ma authored
Using wpt-import in Chromium 18a9ef45. With Chromium commits locally applied on WPT: 270d4abd "ServiceWorker: Add new WPT tests to make sure to update a registration with different script type and identical script content." 0ef86cd5 "Revert "Make XR FrameData and Environment mojo associated"" 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: ericwilligers@chromium.org: external/wpt/css/motion hbos@chromium.org, hta@chromium.org: external/wpt/webrtc rouslan@chromium.org, mathp@chromium.org: external/wpt/payment-request smcgruer@chromium.org: external/wpt/css/css-position NOAUTOREVERT=true TBR=markdittmer No-Export: true Change-Id: I9468a0c44d7505356e09c9c858e3878624b94546 Reviewed-on: https://chromium-review.googlesource.com/c/1320473Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Robert Ma <robertma@chromium.org> Cr-Commit-Position: refs/heads/master@{#605798}
-
Robert Ogden authored
In order to do server-side experimentation, we need to send the experiment id to the server. The best approach for this is in the URL. See bug for additional context and discussion. Bug: 901157 Change-Id: I4200cbcf7549dce27cb1a8dbf4ee80d81bae6704 Reviewed-on: https://chromium-review.googlesource.com/c/1313838 Commit-Queue: Robert Ogden <robertogden@chromium.org> Reviewed-by:
Ryan Sturm <ryansturm@chromium.org> Cr-Commit-Position: refs/heads/master@{#605797}
-
Dmitry Gozman authored
This patch replaces kNavigationPolicyHandledByClient with an explicit call CreatePlaceholderDocumentLoader. This technique removes inversion of control between WebLocalFrame and it's client, and gives the client all the power for driving navigations. For example: - RenderFrameImpl::PendingNavigationInfo is gone, since RenderFrameImpl controls the process and doesn't have to store information between WebLocalFrameClient callbacks. - We don't issue DidStartProvisionalLoad for placeholders anymore for the similar reason. A couple of small changes required: - WebNavigationParams::source_location is now optional. This is needed for preserving source location when creating a placeholder (and for synchronous commits in the future). - Plumbed WebFrameLoadType instead of replaces_current_item to not lose information. Next step will do the same for kNavigationPolicyCurrentTab and let the client drive navigation all the time. After that we'll get rid of multiple WebLocalFrameClient callbacks. Bug: 855189 Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng Change-Id: I5f1d1b5269f99227e3998fba2333c0f3661f7e9e Reviewed-on: https://chromium-review.googlesource.com/c/1263052 Commit-Queue: Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Nasko Oskov <nasko@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#605796}
-
Alessio Bazzica authored
This CL is part of a refactoring work to unblock other CLs that would generate a circular dependency when including modules/audio_processing in WebRTC. It will also allow to easily move the APM interface part under //api (in WebRTC). More in detail, this change adds :api as dependency in chromium where needed. The target is currently a dummy one (see https://webrtc-review.googlesource.com/c/src/+/109585), but once this CL lands, https://webrtc-review.googlesource.com/c/src/+/109501 will make it an actual target. Bug: webrtc:9535 Change-Id: Iffa36ff948369f172970edb53917fccdcb07e05b Reviewed-on: https://chromium-review.googlesource.com/c/1319674Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Ale Bzk <alessiob@chromium.org> Cr-Commit-Position: refs/heads/master@{#605795}
-
Fredrik Hubinette authored
Looks like a the crashing we see with the LimitParallellMediaPreloading experiment is caused by the code trying to start a new load while Document is getting destroyed. By posting that task, everything should be destroyed neatly and weak pointers should discard the task. Change-Id: I0629b11ff13f51d9f24cc64c5fd56419ea82fd5f Reviewed-on: https://chromium-review.googlesource.com/c/1318538Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Fredrik Hubinette <hubbe@chromium.org> Cr-Commit-Position: refs/heads/master@{#605794}
-
Mike Frysinger authored
Currently when passing unknown options, we get a traceback: Traceback (most recent call last): File "/usr/lib/python-exec/python2.7/grit", line 15, in <module> grit.grit_runner.Main(sys.argv[1:]) File "/usr/lib64/python2.7/site-packages/grit/grit_runner.py", line 229, in Main args = options.ReadOptions(args) # args may be shorter after this File "/usr/lib64/python2.7/site-packages/grit/grit_runner.py", line 167, in ReadOptions (opts, args) = getopt.getopt(args, 'g:qdvxc:i:p:h:', ('psyco',)) File "/usr/lib64/python2.7/getopt.py", line 90, in getopt opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:]) File "/usr/lib64/python2.7/getopt.py", line 190, in do_shorts if short_has_arg(opt, shortopts): File "/usr/lib64/python2.7/getopt.py", line 206, in short_has_arg raise GetoptError('option -%s not recognized' % opt, opt) getopt.GetoptError: option -a not recognized This is a lot of noise except for the final line. This can be even harder when grit doesn't have standard -h (help) options. Issue a normal error message so it's clear to users what's wrong. Bug: 747171 Change-Id: If3989f54e16e7952d872f5f19a97a0cbd2c1f4c7 Reviewed-on: https://chromium-review.googlesource.com/c/1319171 Commit-Queue: Mike Frysinger <vapier@chromium.org> Reviewed-by:agrieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#605793}
-
Azeem Arshad authored
Bug: 902129 Change-Id: Id8c6fa607d2eac3c610568e875cd216f1a43fab5 Reviewed-on: https://chromium-review.googlesource.com/c/1319031Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Reviewed-by:
Jeremy Klein <jlklein@chromium.org> Commit-Queue: Azeem Arshad <azeemarshad@chromium.org> Cr-Commit-Position: refs/heads/master@{#605792}
-
Andrey Kosyakov authored
Expose RefCountedMemory from protocol::Binary and pass it all the way down to interceptor. Bug: 901395 Change-Id: Ic684d5b35742922e5893b17b72763157df3f4dca Reviewed-on: https://chromium-review.googlesource.com/c/1315937 Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#605791}
-
Roger McFarlane authored
Bug: 824834 Change-Id: Ife82ce2af47b1a9d4c4db67750d82334181d4d26 Reviewed-on: https://chromium-review.googlesource.com/c/1319852Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Commit-Queue: Roger McFarlane <rogerm@chromium.org> Cr-Commit-Position: refs/heads/master@{#605790}
-
Fredrik Söderquist authored
In LayoutSVGText::InvalidatePositioningValues - which is called when a number of different modifications to text is performed - we only flagged the node itself for layout/paint invalidation. We also need to walk the ancestor chain in case the text is a descendant of a resource. (A <clipPath> in this specific case.) Bug: 901851 Change-Id: Ia70860107616496e979c43a1d1a681def8b8c206 Reviewed-on: https://chromium-review.googlesource.com/c/1320069Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#605789}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/d85a5094684e..6eef2ff50b8c Created with: gclient setdep -r src-internal@6eef2ff50b8c The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: Ib19729a510ea57751984507dea02724fd66fe102 Reviewed-on: https://chromium-review.googlesource.com/c/1319951Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#605788}
-
Jeremy Roman authored
Bug: 856641 Change-Id: Id1f5bdff7cbf8cf6fa62adeadc2d07e819755a5c Reviewed-on: https://chromium-review.googlesource.com/c/1318687Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Commit-Queue: Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#605787}
-
Tibor Goldschwendt authored
This fixes a bug with certain Android emulators. Bug: 899732 Change-Id: Ia30d087ea6993a5fcc08ccb62b6a23e5260f5d2d Reviewed-on: https://chromium-review.googlesource.com/c/1320022Reviewed-by:
agrieve <agrieve@chromium.org> Commit-Queue: Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#605786}
-
Xiyuan Xia authored
Fixed with https://chromium-review.googlesource.com/c/1281167 and no longer fails for mash. Bug: 884360 Change-Id: If5fe9b326eb2f8b73b3af900631ef3b0fb8263f8 Reviewed-on: https://chromium-review.googlesource.com/c/1320196 Commit-Queue: Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Evan Stade <estade@chromium.org> Cr-Commit-Position: refs/heads/master@{#605785}
-
Miguel Casas authored
This CL simplifies the resource management in CRProvider: there's no need to keep |is_single_buffered_| since it's always the opposite of |resource_recycling_enabled_|, and there's no need to keep a |single_buffer_| since there's already a vector of |canvas_resources_|, that can be limited to having only one when IsSingleBuffered(). Most of the changes are in NewOrRecycledResource(), which has to accommodate this new simpler mode (note that there are unit tests covering it). Two more side things: - Renames: s/recycled_resources_/canvas_resources_/ - A few comments are updated/corrected. Change-Id: Ib12db2fd7c2ba7eeb2f9144c49b061114c395e97 Bug: 839970 Reviewed-on: https://chromium-review.googlesource.com/c/1308043Reviewed-by:
Stephen White <senorblanco@chromium.org> Reviewed-by:
Fernando Serboncini <fserb@chromium.org> Commit-Queue: Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#605784}
-
Seth Hampson authored
This adds the P2PQuicStream::Delegate::OnDataReceived and adds tests. It also adds the concept of marking data as consumed by the application and keeping track of the application's read buffered size and amount. This ensures that the P2PQuicStream does not give the application more data than it can buffer, and if its buffer is full it will apply backpressure to the send side. Bug: 874296 Change-Id: I85f677778631a04a5eb1ccd71457485c9444824e Reviewed-on: https://chromium-review.googlesource.com/c/1316836 Commit-Queue: Seth Hampson <shampson@chromium.org> Reviewed-by:
Henrik Boström <hbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#605783}
-
Bernie Thompson authored
BUG=b:117489304 TEST=None Change-Id: I551877e5b4ea970bf52a68e28c9418a812bc5f3a Reviewed-on: https://chromium-review.googlesource.com/c/1320011Reviewed-by:
Miguel Casas <mcasas@chromium.org> Commit-Queue: Bernie Thompson <bhthompson@chromium.org> Cr-Commit-Position: refs/heads/master@{#605782}
-
Mario Sanchez Prada authored
Use call to IdentityManager::HasPrimaryAccount() instead of the former SigninManagerBase::IsAuthenticated(), and remove unnecessary includes. Bug: 890816 Change-Id: I7d5d0f6a078c1065984cabcc071efd3fc02ed92d Reviewed-on: https://chromium-review.googlesource.com/c/1314472Reviewed-by:
Colin Blundell <blundell@chromium.org> Reviewed-by:
David Roger <droger@chromium.org> Commit-Queue: Mario Sanchez Prada <mario@igalia.com> Cr-Commit-Position: refs/heads/master@{#605781}
-
Bo Liu authored
This is not in any gn file for awhile now. Change-Id: Iffd6189ada81ea3add408309259925116f60ad50 Reviewed-on: https://chromium-review.googlesource.com/c/1320026Reviewed-by:
Jinsuk Kim <jinsukkim@chromium.org> Commit-Queue: Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#605780}
-
Toni Barzic authored
Stop observing paymentPortal iframe load in MobileSetupUI - MobileSetupUI sends portal load status messages to the mobile setup webui, but webui merely ignores them. The paymentPortal load status is observed directly in webui by using webview APIs, so messages from the MobileSetupUI are not needed anymore. Change-Id: Ic757e786d4b7efbc3242544f0f9db90226fc8ffa Reviewed-on: https://chromium-review.googlesource.com/c/1318850Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Toni Baržić <tbarzic@chromium.org> Cr-Commit-Position: refs/heads/master@{#605779}
-
Andrew Grieve authored
Change motivated by JNI refactorings, which are made simpler by not having to specify this blacklist in GN. TBR=agrieve # Trivial build refactor Bug: 898261 Change-Id: Ic81e99a460f54e5c02fedfd9f8467390045ee21c Reviewed-on: https://chromium-review.googlesource.com/c/1317341 Commit-Queue: agrieve <agrieve@chromium.org> Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#605778}
-
Roger McFarlane authored
This CL updates the AutofillMetricsTest.AutofillFormSubmittedState to explicitly configure all of the relevant feature flags for its test scenarios, instead of depending on the default state of some feature flags. Bug: 824834 Change-Id: I28c9506fce90fc796c6db0c889d7e3f860561971 Reviewed-on: https://chromium-review.googlesource.com/c/1320217Reviewed-by:
Tommy Martino <tmartino@chromium.org> Commit-Queue: Roger McFarlane <rogerm@chromium.org> Cr-Commit-Position: refs/heads/master@{#605777}
-
Tarun Bansal authored
In data reduction proxy, do not call GetWiFiSSID() on non-Android platforms since it may call hung IO loop. See the associated bug. Bug: 896296 Change-Id: I85ca975465505696f627e77594c27a4ddbe1838e Reviewed-on: https://chromium-review.googlesource.com/c/1319329Reviewed-by:
rajendrant <rajendrant@chromium.org> Commit-Queue: Tarun Bansal <tbansal@chromium.org> Cr-Commit-Position: refs/heads/master@{#605776}
-
Alexei Filippov authored
Change-Id: I231ac01a72c90d4d6feac86ae8278590f3e494cf Reviewed-on: https://chromium-review.googlesource.com/c/1315994Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Commit-Queue: Alexei Filippov <alph@chromium.org> Cr-Commit-Position: refs/heads/master@{#605775}
-
Fernando Serboncini authored
TBR=fserb@chromium.org Change-Id: I0a01e263121ceea3c4ccec41fdb3efe6fceb2b32 Reviewed-on: https://chromium-review.googlesource.com/c/1320218 Commit-Queue: Fernando Serboncini <fserb@chromium.org> Reviewed-by:
Fernando Serboncini <fserb@chromium.org> Cr-Commit-Position: refs/heads/master@{#605774}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/6ba6af1e543b..7b391c51f694 git log 6ba6af1e543b..7b391c51f694 --date=short --no-merges --format='%ad %ae %s' 2018-11-06 nednguyen@google.com Remove legacy timeline based metrics (TBMv1) & all related code Created with: gclient setdep -r src/third_party/catapult@7b391c51f694 The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-autoroll 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=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 TBR=sullivan@chromium.org Change-Id: I45df0db594c8195de4c7684da9386661002d6218 Reviewed-on: https://chromium-review.googlesource.com/c/1319950Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#605773}
-
Hans Wennborg authored
NDK r16 "helpfully" installs libc++ as libstdc++ to make the NDK's Clang use that by default. However, we use a more recent Clang, and after r346167 that starts looking for libc++, which then can't be found due to the renaming. This hacks around the problem by renaming it back. Well, it makes a copy actually, to support Clangs both before and after. We should remove all this in the future when we've moved to a newer NDK. Bug: 902270 Change-Id: Ib69be5faeb0e0b0c8b5b2588fdb66610e30de687 Reviewed-on: https://chromium-review.googlesource.com/c/1319712 Commit-Queue: Reid Kleckner <rnk@chromium.org> Reviewed-by:
Reid Kleckner <rnk@chromium.org> Cr-Commit-Position: refs/heads/master@{#605772}
-
Leszek Swirski authored
The existing XR test workaround (crrev.com/c/1306173) checks for the existence of isInitializationComplete by attempting to access it. However, accessing an undeclared variable throws a ReferenceError -- the correct way of checking for its existence is using typeof. Bug: 894796 Change-Id: I86a5ac2ba45fea5e51c7e0f9fddc4167b8772443 Reviewed-on: https://chromium-review.googlesource.com/c/1319715Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/master@{#605771}
-
Mike Wasserman authored
Attempt to init the display device scale factor in WindowTreeHost's ctor. WindowTreeHost subclasses/users may use the cached scale before InitHost. See http://crbug.com/899084 and https://crrev.com/c/1311080 (PS7) This may incorrectly use the primary display's scale for new windows on extended displays. Still, a best effort attempt to initialize the cached value here may be worthwhile. It's unclear if this solves any practical defects similar to crbug.com/899084. Bug: None Test: Automated Change-Id: Ia776d870d8a51c5ac381b2a023c7a2a579dca97a Reviewed-on: https://chromium-review.googlesource.com/c/1318693Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Michael Wasserman <msw@chromium.org> Cr-Commit-Position: refs/heads/master@{#605770}
-
Mitsuru Oshima authored
Bug: 901433 Test: manual. See bug for repro step Change-Id: Idd25bc0b0b0519141660b11cb7db5e67bc04122c Reviewed-on: https://chromium-review.googlesource.com/c/1319855Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Commit-Queue: Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#605769}
-
Clark DuVall authored
Some services that run in a utility process such as the Data Decoder Service will shut themselves down cleanly if they do not have requests for a period of time. These were being treated as OOM kills previously. This uses the approach Bo outlined in http://crbug.com/872343. Bug: 872343 Change-Id: Iaf371520893076981d44429a7ec1c444b637c93d Reviewed-on: https://chromium-review.googlesource.com/c/1298024Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Reviewed-by:
Mark Mentovai <mark@chromium.org> Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Commit-Queue: Clark DuVall <cduvall@chromium.org> Cr-Commit-Position: refs/heads/master@{#605768}
-
Christian Biesinger authored
I should've removed this line in crrev.com/c/1247184 R=dgrogan@chromium.org Bug: 784059 Change-Id: Iad283f72794abce0dd46835afed1a90c77e0fc91 Reviewed-on: https://chromium-review.googlesource.com/c/1320213 Commit-Queue: Christian Biesinger <cbiesinger@chromium.org> Commit-Queue: David Grogan <dgrogan@chromium.org> Reviewed-by:
David Grogan <dgrogan@chromium.org> Cr-Commit-Position: refs/heads/master@{#605767}
-
Seth Hampson authored
This adds the P2PQuicStream::WriteData function and adds tests. It also adds the concept of a write buffered amount, enforcing this at the P2PQuicStreamImpl. Bug: 874296 Change-Id: Id02c8aa8d5368a87bb24a2e50dab5ef94bcae131 Reviewed-on: https://chromium-review.googlesource.com/c/1315534 Commit-Queue: Seth Hampson <shampson@chromium.org> Reviewed-by:
Henrik Boström <hbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#605766}
-
Ahmed Fakhry authored
This CL changes the default behavior from always placing the shelf on the top-left display in the unified matrix, to placing it according to its aligment: - "left" alignment -> top-left display in the matrix. - "right" alignment -> top-right display in the matrix. - "bottom" alignment -> bottom-left display in the matrix. This CL also fixes the shelf positioning when changing the unified display zoom (the unified scale factor was not taken into consideration). BUG=897771 TEST=Modified tests. Change-Id: Idf7a364ce40340e69a1dbb8785318725ea1aa890 Reviewed-on: https://chromium-review.googlesource.com/c/1315711Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Cr-Commit-Position: refs/heads/master@{#605765}
-
Becca Hughes authored
Move the MediaSessionAction enum from blink to //services. BUG=875004 Change-Id: I29a13b696b0d27facbb1fbf98a162f827d9a476e Reviewed-on: https://chromium-review.googlesource.com/c/1302694 Commit-Queue: Becca Hughes <beccahughes@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Tommy Steimel <steimel@chromium.org> Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Reviewed-by:
Sergey Volk <servolk@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#605764}
-
Chris Lu authored
Replaces individual Collection's ImageDataSource. Replaces the ImageDataSource for History and Recent Tabs. Bug: 851665 Change-Id: I01329b6f0926361d85e48d310dd37c919de47d7f Reviewed-on: https://chromium-review.googlesource.com/c/1318830 Commit-Queue: Chris Lu <thegreenfrog@chromium.org> Reviewed-by:
Sergio Collazos <sczs@chromium.org> Cr-Commit-Position: refs/heads/master@{#605763}
-
Nate Fischer authored
Default code path is unchanged, this only changes behavior when the network service is enabled. This changes AwURLRequestContextGetter's HTTP cache to be in-memory when the network service is enabled, to avoid creating a second HTTP cache (in addition to the NetworkContext's cache). R=jam@chromium.org Bug: 887538 Test: N/A Change-Id: I13073e68a46d6eedaca6d77cf2f96b3ea84fdecb Cq-Include-Trybots: master.tryserver.chromium.android:android_mojo Reviewed-on: https://chromium-review.googlesource.com/c/1319334Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: Nate Fischer <ntfschr@chromium.org> Cr-Commit-Position: refs/heads/master@{#605762}
-
Juan Antonio Navarro Perez authored
Story is flaky when running as smoke test. NOTRY=true TBR=nednguyen@google.com Bug: 899887 Change-Id: I7e7a924329121c5fd5645dd8e0a92e61d7afe6a5 Reviewed-on: https://chromium-review.googlesource.com/c/1320173Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Commit-Queue: Juan Antonio Navarro Pérez <perezju@chromium.org> Cr-Commit-Position: refs/heads/master@{#605761}
-