- 05 Apr, 2018 40 commits
-
-
Peter Wen authored
Other .so files were being skipped since we assumed only a single .so file would be in each apk. Now they are added as .other symbols. Bug: 829464 Change-Id: If23e124caac6e2097891015a183b19bfc8687ed8 Reviewed-on: https://chromium-review.googlesource.com/998527Reviewed-by:
agrieve <agrieve@chromium.org> Commit-Queue: Peter Wen <wnwen@chromium.org> Cr-Commit-Position: refs/heads/master@{#548533}
-
Rouslan Solomakhin authored
Before this patch, if binding failed or the Android payment app disconnected from Chrome midway through the payment process, Chrome would unbind on its own side, which would result in an IllegalArgumentException. This patch adds a boolean mIsServiceConnected that tracks whether the payment app's service is connected to Chrome. If this boolean is false, then Chrome does not attempt to unbind from the payment app service. After this patch, if the Android payment app disconnects from Chrome midway through the payment process or the binding fails, Chrome does not bother to unbind on its own side and thus avoids the IllegalArgumentException. Bug: 828852 Change-Id: I653b3bef07562f815d8e53d62c7aff97649bcac5 Reviewed-on: https://chromium-review.googlesource.com/995618 Commit-Queue: Rouslan Solomakhin <rouslan@chromium.org> Reviewed-by:
Ganggui Tang <gogerald@chromium.org> Cr-Commit-Position: refs/heads/master@{#548532}
-
Alexey Kozyatinskiy authored
Proper script offset is important for DevTools and JavaScript stacks. Bug: chromium:827696 Change-Id: I9786e41b63cea532637b573505ae445f90d866cf Reviewed-on: https://chromium-review.googlesource.com/996531Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Cr-Commit-Position: refs/heads/master@{#548531}
-
Justin DeWitt authored
This was found by ClusterFuzz, see test case in bug. Bug: 828810 Change-Id: I68e3050023d2475917334c54b5d85b7d20565775 Reviewed-on: https://chromium-review.googlesource.com/995962Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Commit-Queue: Justin DeWitt <dewittj@chromium.org> Cr-Commit-Position: refs/heads/master@{#548530}
-
Xiyuan Xia authored
The embedding aura::Window must be attached to a root window so that window server could figure out the correct display and pass it to the other side. Deferring the EmbedUsingToken call until RemoteViewHost is added to a widget. Bug: 812434 Change-Id: Ie65d12d8b883b1a74426c33c3f106bbb637c0f69 Reviewed-on: https://chromium-review.googlesource.com/998498Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#548529}
-
Francois Doray authored
This CL introduces concrete usage examples. Bug: Change-Id: I9ecc5731aff810fb6b5e2cbf818f610ab6c1a7a8 Reviewed-on: https://chromium-review.googlesource.com/657259 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
Gabriel Charette <gab@chromium.org> Cr-Commit-Position: refs/heads/master@{#548528}
-
Marijn Kruisselbrink authored
This reverts part of commit 8a556164. The original change that caused the problems this was working around was reverted, so also revert the workaround to fix the issues the workaround caused. Bug: 813224 Change-Id: Ic0659a38b6ddcf828c2476d6b9fa4e266c364b57 Reviewed-on: https://chromium-review.googlesource.com/998436Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Cr-Commit-Position: refs/heads/master@{#548527}
-
John Z Wu authored
When testing binary size I often only care about Release-iphoneos and it'd be nice to be able to specify that when invoking the script. Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I58a0ba0d470d1bbef3c405b42c62468fb64028c4 Reviewed-on: https://chromium-review.googlesource.com/996555Reviewed-by:
Hiroshi Ichikawa <ichikawa@chromium.org> Commit-Queue: John Wu <jzw@chromium.org> Cr-Commit-Position: refs/heads/master@{#548526}
-
Klaus Weidner authored
This reverts commit f5bbb138. Reason for revert: breaks Windows build Original change's description: > Add SubmitFrameMissing mojo call for WebVR/WebXR > > Goal is that we get a clean lifecycle for a functioning WebVR/WebXR > presentation render loop. It's started by a presenting SendVSync, calls > GetVSync to schedule the next frame, and is ended by a SubmitFrame > call. If there was nothing drawn, it uses SubmitFrameMissing instead of the > usual SubmitFrame/SubmitFrameWithTextureHandle. > > In WebVR 1.1, submitFrame is a JS call, and the app can exit its animation > loop without calling it. WebXR had an analogous feature where SubmitFrame > was skipped if the framebuffer wasn't touched by drawing calls. This > made it hard to tell for the device side if a frame is done or not. > > WebVR 1.1 worked around this by deferring a GetVSync call until after > SubmitFrame, but this was complex: > > - // The logic here is a bit subtle. We get called from one of the following > - // four contexts: > - // > - // (a) from requestAnimationFrame if outside an animating context (i.e. the > - // first rAF call from inside a getVRDisplays() promise) > - // > - // (b) from requestAnimationFrame in an animating context if the JS code > - // calls rAF after submitFrame. > - // > - // (c) from submitFrame if that is called after rAF. > - // > - // (d) from ProcessScheduledAnimations if a rAF callback finishes without > - // submitting a frame. > - // > - // These cases are mutually exclusive which prevents duplicate GetVSync > - // calls. Case (a) only applies outside an animating context > - // (in_animation_frame_ is false), and (b,c,d) all require an animating > - // context. While in an animating context, submitFrame is called either > - // before rAF (b), after rAF (c), or not at all (d). If rAF isn't called at > - // all, there won't be future frames. > > This CL removes those special cases and just always calls RequestVSync from > requestAnimationFrame, collapsing cases (a) and (b) into an unconditional call. > Cases (c) and (d) are now no longer needed and removed. > > The layout tests now check the SubmitFrameMissing call count. > > Also added a check for a WebXR exclusive session ending in the middle of a > frame. (The layout tests revealed this since OnEndFrame no longer exits early > on a clean framebuffer.) > > Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 > Change-Id: I5722097d421ca9448760e696ea379895a1320199 > Reviewed-on: https://chromium-review.googlesource.com/996614 > Reviewed-by: Ian Vollick <vollick@chromium.org> > Reviewed-by: Brandon Jones <bajones@chromium.org> > Reviewed-by: Martin Barbella <mbarbella@chromium.org> > Reviewed-by: Bill Orr <billorr@chromium.org> > Commit-Queue: Klaus Weidner <klausw@chromium.org> > Cr-Commit-Position: refs/heads/master@{#548518} TBR=vollick@chromium.org,bajones@chromium.org,mbarbella@chromium.org,klausw@chromium.org,billorr@chromium.org Change-Id: I18f7e808840140c7a4c55139687700b8e1ceac8c 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_slimming_paint_v2 Reviewed-on: https://chromium-review.googlesource.com/998652Reviewed-by:
Klaus Weidner <klausw@chromium.org> Commit-Queue: Klaus Weidner <klausw@chromium.org> Cr-Commit-Position: refs/heads/master@{#548525}
-
Becca Hughes authored
will-change will force the media controls to use a different layer. According to Pinpoint this will reduce CC memory usage by 18% and GPU memory usage by 6%. BUG=821961,821414 Change-Id: I13c62f79577dfef253acf5f3b89cecaf0c5c1ad3 Reviewed-on: https://chromium-review.googlesource.com/996309Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Commit-Queue: Becca Hughes <beccahughes@chromium.org> Cr-Commit-Position: refs/heads/master@{#548524}
-
Mikel Astiz authored
Prior to this patch, in rare circumstances represented in tests, OnGotInitialHistoryDataAndIconURLCandidates() could be called twice without actually receiving new candidates in-between (i.e. call to OnUpdateCandidates()). In the particular case of pages listing Web Manifests, this could lead to the next candidate being processed by DownloadCurrentCandidateOrAskFaviconService() in a situation where actually all candidates were already processed, going out of bounds of the candidates vector. Bug: 828196 Change-Id: Ic4966db627b9e26252fb1c1b3f0512a054301df6 Reviewed-on: https://chromium-review.googlesource.com/995673Reviewed-by:
Peter Kotwicz <pkotwicz@chromium.org> Commit-Queue: Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#548523}
-
Maks Orlovich authored
This reverts commit cf7316a4. Reason for revert: Suspect for crashes in crbug/827105 Bug:827105 Original change's description: > Simple disk cache: fix inode problem caused by extremely small cache files > > On POSIX filesystems, when most of cache files are extremely small, they > are hardly evicted by size limitation of cache and cache can be grow to > maximum inode of the partition. > > So make cache watch the current available inodes and update its > limitation on maximum cache files count periodically. Then evict cached > resources not only depending on size limit, but also on count of cached > files limit. > > This was originally authored by Yunsik Jang <yunsik.jang@lge.com> > > Change-Id: I4216c7602b2cc24fb0f445f8297836acbc08c431 > Reviewed-on: https://chromium-review.googlesource.com/964329 > Commit-Queue: José Dapena Paz <jose.dapena@lge.com> > Reviewed-by: Maks Orlovich <morlovich@chromium.org> > Reviewed-by: Gabriel Charette <gab@chromium.org> > Cr-Commit-Position: refs/heads/master@{#545203} TBR=pasko@chromium.org,gab@chromium.org,morlovich@chromium.org,jose.dapena@lge.com # Not skipping CQ checks because original CL landed > 1 day ago. Change-Id: Ib04a897431143a90bcf9f2d778247ae9b8201047 Reviewed-on: https://chromium-review.googlesource.com/995733Reviewed-by:
Julia Tuttle <juliatuttle@chromium.org> Commit-Queue: Maks Orlovich <morlovich@chromium.org> Cr-Commit-Position: refs/heads/master@{#548522}
-
Annie Sullivan authored
NOTRY=true Bug: 829499 Change-Id: I4196bdfd484c3ca3497a390528980d72795f5a3d Reviewed-on: https://chromium-review.googlesource.com/998613Reviewed-by:
Ned Nguyen <nednguyen@google.com> Commit-Queue: Ned Nguyen <nednguyen@google.com> Cr-Commit-Position: refs/heads/master@{#548521}
-
Bence Béky authored
I overzealously landed https://crrev.com/c/990512 assuming that if a TCP connection is open through an HTTP/2 proxy with an empty ALPN list, then the server cannot negotiate HTTP/2. Turns out that there are already 11 crashes reported on the first day of the Canary release that picked up this change. This CL adds a unittest that triggers this CHECK (verified locally), and changes Job::DoInitConnectionComplete() to handle this case properly and avoid the crash. Bug: 828865 Change-Id: I5bc8fb447a07d350970904b350f9aeb670e2da7d Reviewed-on: https://chromium-review.googlesource.com/996878Reviewed-by:
Ryan Hamilton <rch@chromium.org> Commit-Queue: Bence Béky <bnc@chromium.org> Cr-Commit-Position: refs/heads/master@{#548520}
-
Mikel Astiz authored
The patch updates most usages of |SessionID::id_type| as well as other primitive types like |int| that actually represent session IDs (i.e. window, tab or session identifiers). Instead, SessionID instances are adopted, via the newly introduced API. We do this as part of a larger effort to control better the lifetime of SessionID instances. In particular, the goal is: 1. To avoid the direct use of the default constructor, which currently assigns new unique IDs (and we're planning to change that). 2. Reduce the usage of SessionID::id_type, int, int32_t etc. for the cases where SessionID can be used (which should be safer), so conversions from/to unsafe types is avoided. 3. Make the error-case (usually represented as ID -1) more homogeneous via the adoption of SessionID::InvalidValue(). As per behavioral differences: SessionID::FromSerializedValue() squashes all negative numbers as well as zero into SessionID::InvalidValue(), internally represented as -1. This should be a no-op for most of the code, with some exceptions (like extensions API) that I have excluded in this patch. Bug: 823798 Change-Id: I2b6268d110cfe3fe7b531d4f95b3022d8f012e80 Reviewed-on: https://chromium-review.googlesource.com/989912 Commit-Queue: Mikel Astiz <mastiz@chromium.org> Reviewed-by:
Benoit L <lizeb@chromium.org> Reviewed-by:
rajendrant <rajendrant@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Karan Bhatia <karandeepb@chromium.org> Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Jialiu Lin <jialiul@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Reviewed-by:
Thomas Guilbert <tguilbert@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Cr-Commit-Position: refs/heads/master@{#548519}
-
Klaus Weidner authored
Goal is that we get a clean lifecycle for a functioning WebVR/WebXR presentation render loop. It's started by a presenting SendVSync, calls GetVSync to schedule the next frame, and is ended by a SubmitFrame call. If there was nothing drawn, it uses SubmitFrameMissing instead of the usual SubmitFrame/SubmitFrameWithTextureHandle. In WebVR 1.1, submitFrame is a JS call, and the app can exit its animation loop without calling it. WebXR had an analogous feature where SubmitFrame was skipped if the framebuffer wasn't touched by drawing calls. This made it hard to tell for the device side if a frame is done or not. WebVR 1.1 worked around this by deferring a GetVSync call until after SubmitFrame, but this was complex: - // The logic here is a bit subtle. We get called from one of the following - // four contexts: - // - // (a) from requestAnimationFrame if outside an animating context (i.e. the - // first rAF call from inside a getVRDisplays() promise) - // - // (b) from requestAnimationFrame in an animating context if the JS code - // calls rAF after submitFrame. - // - // (c) from submitFrame if that is called after rAF. - // - // (d) from ProcessScheduledAnimations if a rAF callback finishes without - // submitting a frame. - // - // These cases are mutually exclusive which prevents duplicate GetVSync - // calls. Case (a) only applies outside an animating context - // (in_animation_frame_ is false), and (b,c,d) all require an animating - // context. While in an animating context, submitFrame is called either - // before rAF (b), after rAF (c), or not at all (d). If rAF isn't called at - // all, there won't be future frames. This CL removes those special cases and just always calls RequestVSync from requestAnimationFrame, collapsing cases (a) and (b) into an unconditional call. Cases (c) and (d) are now no longer needed and removed. The layout tests now check the SubmitFrameMissing call count. Also added a check for a WebXR exclusive session ending in the middle of a frame. (The layout tests revealed this since OnEndFrame no longer exits early on a clean framebuffer.) Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I5722097d421ca9448760e696ea379895a1320199 Reviewed-on: https://chromium-review.googlesource.com/996614Reviewed-by:
Ian Vollick <vollick@chromium.org> Reviewed-by:
Brandon Jones <bajones@chromium.org> Reviewed-by:
Martin Barbella <mbarbella@chromium.org> Reviewed-by:
Bill Orr <billorr@chromium.org> Commit-Queue: Klaus Weidner <klausw@chromium.org> Cr-Commit-Position: refs/heads/master@{#548518}
-
Patrick Monette authored
This is because shell extensions don't specifically target Chrome, they just get automatically loaded by the OS. These will get blocked in phase 2 of third-party software blocking. For IMEs, they are allowed because there is no viable alternative for their implementation. Bug: 829490 Change-Id: I501aad6e77734336161448f0e8e91ac78ec6d40d Reviewed-on: https://chromium-review.googlesource.com/996586 Commit-Queue: Patrick Monette <pmonette@chromium.org> Reviewed-by:
Greg Thompson <grt@chromium.org> Cr-Commit-Position: refs/heads/master@{#548517}
-
Robert Kaplow authored
Not supported on iOS so dev builds will not show chrome://ukm data still. Bug: 826400 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I5d2b1ddc06256903949940638ed76e5d9231da51 Reviewed-on: https://chromium-review.googlesource.com/985017Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Commit-Queue: Robert Kaplow <rkaplow@chromium.org> Cr-Commit-Position: refs/heads/master@{#548516}
-
Miguel Casas authored
This CL extracts the call to vaCreateContext() out of VaapiWrapper's CreateSurfaces() and into a new method VaapiWrapper::CreateContext(). The former still calls the latter, but this change allows for separating the allocation of the surfaces from the creation of the context. In particular, this is needed for decoding directly on client Surfaces (see the bug and/or the experimental CL crrev.com/c/986353. from which this code is separated). Bug: 822346 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;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: I37f28d2a0fe939264d3153f34bd25bbc6c77ba79 Reviewed-on: https://chromium-review.googlesource.com/995623Reviewed-by:
Kristian H. Kristensen <hoegsberg@chromium.org> Commit-Queue: Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#548515}
-
Mitsuru Oshima authored
ClientControlledShellSurface doesn't use configure to resize. This is reland of https://crrev.com/c/994173/5 TBR=reveman@chromium.org BUG=828586 TEST=manual Change-Id: Id39f3d0ac5b680aa74fef13df7d0631d5b9ca742 Reviewed-on: https://chromium-review.googlesource.com/998339Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Commit-Queue: Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#548514}
-
Tommy C. Li authored
When steady state elisions is on, the user focuses the Omnibox, and presses an arrow key, we should unelide and place the cursor correctly. This adds a unit test for the above behavior. Bug: 797354 Change-Id: I417603b21c89a634dc494dcbe3a764f19d7f0d27 Reviewed-on: https://chromium-review.googlesource.com/996295 Commit-Queue: Tommy Li <tommycli@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#548513}
-
Gabriel Charette authored
This fixes 3 things: 1) No longer need a friended private variable on MessageLoop (this facilitates crbug.com/825327) 2) Support backtraces that go through TaskScheduler (and eventual other TaskAnnotator users) 3) Support backtraces for tasks posted when returning from a nested loop (MessageLoop would previously set the field to null rather than "previous" when returning from a task). New TaskAnnotatorBacktraceIntegrationTests are largely based on previous PendingTaskTests (plus testing support beyond simple MessageLoop/Thread). Prefered making PendingTask::task_backtrace mutable to forcing all PostTask annotations (TaskAnnotator::DidQueueTask and TaskTracker::WillPostTask) to use a non-const pointer given this doesn't really modify the state of the PendingTask but rather some internal tracing state. This also revealed issue 826902. Bug: 825987, 825327, 826902 Change-Id: Iae24c8d8745a6dadb2185f5c581fb1ff1d5b3f23 Reviewed-on: https://chromium-review.googlesource.com/982496 Commit-Queue: Gabriel Charette <gab@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Reviewed-by:
kylechar <kylechar@chromium.org> Cr-Commit-Position: refs/heads/master@{#548512}
-
Eugene But authored
Use constraintLessThanOrEqualToAnchor: to make sure that close button always anchored to the right edge of the view. Bug: None Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: Icf2c7064d8172056d1cba02987d703496d2dc25d Reviewed-on: https://chromium-review.googlesource.com/998348Reviewed-by:
edchin <edchin@chromium.org> Commit-Queue: Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#548511}
-
erikchen authored
This CL has no intended behavior change. In addition to moving the code, this CL: * Updates the names of classes/files to remove the Memlog prefix. * Updates the name of the service to be "Heap Profiling Service" from "Profiling Service". * profiling_browsertest was removed as it wasn't testing anything useful. There is a large suite of end-to-end browser tests in memlog_browsertest.cc [untouched by this CL]. Bug: 827545 Change-Id: I7ef0947d7de4070d1863c509e2d280cefd4fec2d Reviewed-on: https://chromium-review.googlesource.com/995641 Commit-Queue: Erik Chen <erikchen@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Reviewed-by:
Cait Phillips <caitkp@chromium.org> Cr-Commit-Position: refs/heads/master@{#548510}
-
Gabriel Charette authored
The fix to crbug.com/826701 resulted in crbug.com/827931 highlighting that calling ShowProfileErrorDialog that early (before ResourceBundle is initialized) is just not possible. As discussed @ https://chromium-review.googlesource.com/c/chromium/src/+/985110/3/chrome/browser/prefs/chrome_pref_service_factory.cc#332 it is preferable to defer this message to BrowserThread::UI for when it is brought up. Turns out ChromeBrowserMainParts::DeferringTaskRunner already puts an early ThreadTaskRunnerHandle in place for this very purpose :) R=sky@chromium.org Bug: 827931 Change-Id: Icf409103e51cf9957ac60b3ffa4b8310a5b36dbb Reviewed-on: https://chromium-review.googlesource.com/996215Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Gabriel Charette <gab@chromium.org> Cr-Commit-Position: refs/heads/master@{#548509}
-
Brian Anderson authored
This adds a few constructors to SharedWindowedAnalyzerClient and switches over all call sites that use initializer lists to use a constructor instead. The upcoming FrameMetrics class will use the "max_window_size" constructor. Bug: 807463 Change-Id: Ie1d21b90ce00dff84d41c30e9563a9fba4ba67f5 Reviewed-on: https://chromium-review.googlesource.com/981415 Commit-Queue: Brian Anderson <brianderson@chromium.org> Reviewed-by:
Timothy Dresser <tdresser@chromium.org> Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Cr-Commit-Position: refs/heads/master@{#548508}
-
Chris Harrelson authored
Crash stacks seem to clearly indicate that the layout object of the owning element of the frame may be null. The exact reason for this is unknown, as for why it happens more often or always when OOPIFS are present, but it seems that http://crrev.com/1508f4a32a3fb19d6e3599acc0bcc817ebe6c5be may be involved. Note also that the code path in question is specific to RLS, which explains why it starts in M66. Bug:816383 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I8580e307d4f3d1cee312c6b70c433e0223944cb8 Reviewed-on: https://chromium-review.googlesource.com/997103Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Cr-Commit-Position: refs/heads/master@{#548507}
-
Istiaque Ahmed authored
AsynExtensionFunction is deprecated and will soon be removed. Bug: 829174 Change-Id: I1201a74737fff8846f0847e1a2ae1c3963d96af9 Reviewed-on: https://chromium-review.googlesource.com/997099 Commit-Queue: Istiaque Ahmed <lazyboy@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#548506}
-
Edward Lesmes authored
Will be used to check that deapplying the patch on gclient works as well. Bug: 643346 Change-Id: I7428af15b48b772e2e8bc9662563cb880169dfac Reviewed-on: https://chromium-review.googlesource.com/996562Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> Cr-Commit-Position: refs/heads/master@{#548505}
-
Emily Stark authored
The only thing that cares about persisted SCTs is DevTools (which should be able to handle missing SCTs or other security info), so we don't need to persist them to the disk cache. This change removes the SCT serialization from HttpResponseInfo::Persist and throws out SCTs when reading them out of existing cached entries. Bug: 647947 Change-Id: Ida1171057d9c22819778e53cd3e242b0dcac585d Reviewed-on: https://chromium-review.googlesource.com/996462 Commit-Queue: Emily Stark <estark@chromium.org> Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Cr-Commit-Position: refs/heads/master@{#548504}
-
Peter Kasting authored
This is in preparation for removing all traces of "gradient" from the implementation. No functional change; only file/class renames. BUG=none TEST=none Change-Id: Ie2d0a16239c37557ea05a7c1eeea3180ad793980 Reviewed-on: https://chromium-review.googlesource.com/996714Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Commit-Queue: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#548503}
-
Ned Nguyen authored
NOTRY=true Change-Id: Ib13536e94a765ecb2732125970b9210f03d0eb48 Reviewed-on: https://chromium-review.googlesource.com/998310 Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Xiaohan Wang <xhwang@chromium.org> Cr-Commit-Position: refs/heads/master@{#548502}
-
Patrick Monette authored
Bug: 717696 Change-Id: I92bcf252641604da42532da8a4d1a8d5281bfeec Reviewed-on: https://chromium-review.googlesource.com/996581Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Commit-Queue: Patrick Monette <pmonette@chromium.org> Cr-Commit-Position: refs/heads/master@{#548501}
-
Takumi Fujimoto authored
The test is failing on Win7 Tests (dbg)(1) and WebKit Win7 as well. TBR=beccahughes@chromium.org TBR=thomasanderson@chromium.org No-Try: true No-Presubmit: true No-Tree-Checks: true Bug: 829228 Change-Id: I676a6d19c2f35a3acd8fc701b409fc8c2fb4ba20 Reviewed-on: https://chromium-review.googlesource.com/998332 Commit-Queue: Takumi Fujimoto <takumif@chromium.org> Reviewed-by:
Takumi Fujimoto <takumif@chromium.org> Cr-Commit-Position: refs/heads/master@{#548500}
-
Adam Langley authored
I thought that this would trigger a hairpin callback, but it doesn't because device discovery goes via the MessageLoop in both the virtual and real-world cases. Change-Id: I2c44793294189d9171221d1cb9cdb5a706c3869e Reviewed-on: https://chromium-review.googlesource.com/982634 Commit-Queue: Adam Langley <agl@chromium.org> Reviewed-by:
Balazs Engedy <engedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#548499}
-
Dmitry Gozman authored
We now provide frame tree, frame committed and frame deleted trace events while tracing, and then show the processes which match them on Timeline. Followups: - move browser events from tracing handler to frame tree nodes; - emit frame tree from tracing started observer; - do the same for workers in renderer; - remove InspectorTracingAgent; - maybe show non-interesting events on the tracks, but grey them out; - UI improvements. Bug: 820250 Change-Id: I6a4a782cab2f286bc037742f4119e1eca9a34d3c Reviewed-on: https://chromium-review.googlesource.com/974367 Commit-Queue: Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Alexei Filippov <alph@chromium.org> Cr-Commit-Position: refs/heads/master@{#548498}
-
Alex Clarke authored
Including a name in the trace makes it easier to diagnose bugs. Bug: 777763 Change-Id: I81d80b4cc0f9d71be5631575730a7ae6479b18f0 Reviewed-on: https://chromium-review.googlesource.com/977969 Commit-Queue: Alex Clarke <alexclarke@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Cr-Commit-Position: refs/heads/master@{#548497}
-
Vadym Doroshenko authored
Now password_controller.js is injected by adding it to call of __gCrWeb.findPasswordForms(). It has performance drawbacks since __gCrWeb.findPasswordForms() could be called multiple times. This CL makes injection of password_controller.js with WKWebView injection. Also this CL updates the header comment in password_controller.js with up-to-date information. Bug: 828824, 418827 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I4036e3279e0c3a32301795b46630c49801679106 Reviewed-on: https://chromium-review.googlesource.com/995534 Commit-Queue: Vadym Doroshenko <dvadym@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#548496}
-
Stephen Chenney authored
We attempt to optimize the background image destination rectangle to avoid pointlessly painting under borders, thus allowing more non-tiling image draws. But that breaks when there is a border image with outsets because in that case, despite an opaque border, the background image may not cover the border area. Also clean up the conditional that prevents the optimization. R=fmalita@chromium.org BUG=827871 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: Ibd0fb4307fd2d7b7df4421f18fb07da2c669aa79 Reviewed-on: https://chromium-review.googlesource.com/996884 Commit-Queue: Stephen Chenney <schenney@chromium.org> Reviewed-by:
Florin Malita <fmalita@chromium.org> Cr-Commit-Position: refs/heads/master@{#548495}
-
Justin Cohen authored
Tests were broken because: 1: Not updating constants after reverting https://chromium-review.googlesource.com/957916 2: Not overriding some size classes in UIWindow 3: Removing width constants that would require pixel alignment, which means tests would be device scale dependent. Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I3813137b884475e645a3a7977b8ff699d53bfa20 Reviewed-on: https://chromium-review.googlesource.com/996216Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Commit-Queue: Justin Cohen <justincohen@chromium.org> Cr-Commit-Position: refs/heads/master@{#548494}
-