1. 23 Sep, 2014 38 commits
  2. 22 Sep, 2014 2 commits
    • jfroy's avatar
      Define a new media_cast target which provides the minimal functionality · 093dbe35
      jfroy authored
      required by media/cast.
      
      The full media target cannot be easily built for some platform (namely
      iOS aarch64), typically because of assembly code. The new target has no
      such issues.
      
      The change also includes modifications to the media/cast build file to
      simplify the dependency list and enable builds using the media_cast
      component via a build variable.
      
      BUG=415335
      
      Review URL: https://codereview.chromium.org/581803003
      
      Cr-Commit-Position: refs/heads/master@{#296101}
      093dbe35
    • weiliangc's avatar
      Class for allocating a chunk of memory for RenderPass · 6ae8c50c
      weiliangc authored
      For DrawQuads and SharedQuadState, RenderPass used allocate them one by
      one whenever needed. This new class helps RenderPass manages allocation
      and iteration of those two types. This container allocates a chunk of
      memory at one time and hands out raw pointers. It also provides iterator
      and reverse iterators for going through its contents.
      
      Unittest for ListContainer makes sure the raw pointers it hands out are
      valid and iterator has same behavior as vector iterators.
      
      Follows 398533002, and 404563005.
      
      BUG=344962
      
      Review URL: https://codereview.chromium.org/400463002
      
      Cr-Commit-Position: refs/heads/master@{#296100}
      6ae8c50c