1. 01 Jul, 2016 37 commits
  2. 30 Jun, 2016 3 commits
    • wangxianzhu's avatar
      Enable under-invalidation checking in tests calling runAfterLayoutAndPaint() · 86f41e76
      wangxianzhu authored
      These tests often change dom/style after a complete paint and test how
      the rendering pipeline handles the changes. They are good candidate
      for under-invalidation checking.
      
      BUG=619103
      
      Review-Url: https://codereview.chromium.org/2092953002
      Cr-Commit-Position: refs/heads/master@{#403355}
      86f41e76
    • sunxd's avatar
      cc:: Compute animation scale on demand · f468675e
      sunxd authored
      As we are cleaning up transform tree logic, we need to remove animation
      scale computation and data from transform tree. And instead, we compute
      it when we need it.
      
      However, computing animation scale may reuse animation scale data which
      belongs to other transform nodes, so we need a PropertyTreesCachedData
      to store this information, and invalidate it every time we update the
      transform tree.
      
      BUG=623564
      CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
      
      Review-Url: https://codereview.chromium.org/2105673003
      Cr-Commit-Position: refs/heads/master@{#403354}
      f468675e
    • emircan's avatar
      Consider non-keyframes for RTCVideoEncoder error counter · 37107685
      emircan authored
      This CL addresses the bug below. Earlier on, we experimented and
      decided that we would fallback to SW decoded after 50 consecutive
      HW decode errors. However, after an error in keyframe, non-keyframes
      would be dropped and not added to the error counter. As a result,
      we would wait for 50 keyframe errors before SW fallback, which
      takes a long time. This CL fixes the issues resulting from this.
      
      BUG=616968
      TEST=Tried the problematic Cisco stream referred in bug.
      First 3-5 seconds, we don't get a video(due to HW errors) but works
      afterwards(falling back to SW).
      
      Review-Url: https://codereview.chromium.org/2093823002
      Cr-Commit-Position: refs/heads/master@{#403353}
      37107685