1. 12 6月, 2015 1 次提交
  2. 11 6月, 2015 1 次提交
  3. 10 6月, 2015 3 次提交
  4. 06 6月, 2015 2 次提交
    • H
      Export Point, Size, Rect, Color, Paint, Path, BoxDecoration, Border,... · 12aa568f
      Hixie 提交于
      Export Point, Size, Rect, Color, Paint, Path, BoxDecoration, Border, BorderSide, EdgeDims, and FlexDirection from fn2.dart
      That way most of our libraries don't have to use sky.Foo all over the place, and we can reduce the number of imports in most Dart components.
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1161323004
      12aa568f
    • H
      Silence a bunch of annoying bogus dartanalyzer warnings. · 3cf7368d
      Hixie 提交于
       - several places where we use a getter knowing that it will return a
         subclass of its declared type, even asserting that it does, but
         where the analyzer is worried that the getter might start returning
         a new value unexpectedly, solved by having a temporary local
         variable shadow the getter and asserting that it doesn't change
         value
       - many many places where we do this with parentData specifically,
         solved by type-erasing parentData.
       - a place where a mixin wants to be subclassing another class, and
         uses its methods, solved by saying that the mixin is abstract but
         implements the superclass
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1160923008
      3cf7368d
  5. 05 6月, 2015 7 次提交
  6. 04 6月, 2015 3 次提交
  7. 03 6月, 2015 1 次提交
  8. 30 5月, 2015 2 次提交
    • A
      Add a simple inksplash example · 6eba4a04
      Adam Barth 提交于
      We'll eventually turn this into a full fn2 component, but for now it's just an
      example.
      
      To make this work, I created a schedule.dart as a start to implementing
      scheduler.md. For now, I've kept the API similar to the web platform so that
      the old world can continue use it backed by sky.window.requestAnimationFrame.
      
      R=eseidel@chromium.org
      BUG=
      
      Review URL: https://codereview.chromium.org/1145973009
      6eba4a04
    • A
      Improve RenderNode performance · 9accf81d
      Adam Barth 提交于
      Experimenting with using the observatory profiler, I noticed two pieces of
      low-hanging performance fruit. This change removes about 4% of the total
      profile for layouting out and painting the flex demo.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1155043004
      9accf81d
  9. 29 5月, 2015 1 次提交