1. 06 6月, 2017 1 次提交
  2. 25 5月, 2017 1 次提交
    • C
      Add inactive, suspending ApplicationLifecycleState values (#3713) · 75c74dc4
      Chris Bracken 提交于
      **This is a breaking change on iOS**
      
      Previously, the `paused` state was entered when the application resigned
      active status. `inactive` now maps to this status. `paused` now maps to
      an app that has been backgrounded.
      
      `inactive` is currently emitted on iOS only and corresponds to iOS's
      foreground inactive state.
      
      Current state transitions are:
      `resumed` <--> `inactive` <--> `paused`
      
      suspending is currently emitted on Android only and corresponds to the
      transition to Android's stopped state.
      
      Current state transitions are:
      `resumed` <--> `paused` --> `suspending` --> `resumed`
      
      These transitions may change in future.
      75c74dc4
  3. 25 4月, 2017 1 次提交
  4. 12 4月, 2017 1 次提交
  5. 09 4月, 2017 1 次提交
  6. 23 3月, 2017 1 次提交
  7. 16 2月, 2017 1 次提交
  8. 28 1月, 2017 1 次提交
  9. 25 1月, 2017 1 次提交
  10. 10 12月, 2016 1 次提交
    • C
      Add option to desktop test shells to use an embedded font for consistent unit tests. (#3301) · e133b4fb
      Chinmay Garde 提交于
      * This allows the tests to add their own FLX files but still use consistent fonts.
      * The test fonts are only embedded on the desktop test shells. The option is not available on mobile platforms.
      * Right now, all fonts will resolve to the test font. If we want tests to be able to use the fonts they embed in FLX files but use the test font for platform fallbacks, we will need to add font selector fallbacks. I can do this in an another patch. So far, there are no users of this functionality.
      e133b4fb
  11. 29 10月, 2016 2 次提交
    • A
      Unlink from mojo (#3187) · 63e71803
      Adam Barth 提交于
      After this patch, we no longer link with Mojo. We still use some gn definitions
      from //mojo to create Dart packages.
      63e71803
    • A
      Remove last mojom interface (#3184) · 4b8c9051
      Adam Barth 提交于
      We no longer use mojom to transport messages. We still use the Mojo EDK
      to spin the event loop, however.
      4b8c9051
  12. 28 10月, 2016 2 次提交
  13. 26 10月, 2016 1 次提交
  14. 25 10月, 2016 1 次提交
  15. 21 10月, 2016 1 次提交
  16. 20 10月, 2016 3 次提交
  17. 15 10月, 2016 1 次提交
    • A
      Response messages (#3134) · 82728570
      Adam Barth 提交于
      Add plunbing for Host-to-Dart platform messages
      
      We'll use the plumbing in this direction for things like key events.
      82728570
  18. 12 10月, 2016 3 次提交
  19. 07 10月, 2016 1 次提交
  20. 06 10月, 2016 1 次提交
  21. 04 10月, 2016 1 次提交
  22. 30 9月, 2016 1 次提交
  23. 29 9月, 2016 1 次提交
  24. 24 9月, 2016 1 次提交
    • C
      Move shell to //flutter and split shell/BUILD.gn into smaller pieces for each subcomponent. (#3053) · 9eb446e0
      Chinmay Garde 提交于
      * Namespaces have been updated to reflect the move from //flutter/sky/shell to //flutter/shell.
      * shell/BUILD.gn file has been split into smaller GN files for each subcomponent of the shell (common, GPU, diagnostic, testing).
      * GN dependencies have been rewritten to stop exposing common shell dependencies as public. Duplicates have also been removed.
      * GPU subcomponent has been updated make it more suitable for Vulkan integration.
      * The GLFW backend has been resurrected.
      9eb446e0
  25. 16 9月, 2016 1 次提交
    • A
      Polish dart:ui API (#3032) · a9714825
      Adam Barth 提交于
      This patch makes three API changes:
      
       * The dart:ui library now always communicates in physical pixels. The
         framework is responsible for converting to whatever logical coordinate
         system it wishes to use.
       * The textBaselien property is now on TextStyle rather than ParagraphStyle,
         which will let us choose which baseline to use on a per-span basis rather
         than on a per-paragraph basis.
       * This patch also removes the old MojoServices function endpoints.
      
      Fixes https://github.com/flutter/flutter/issues/3779
      Fixes https://github.com/flutter/flutter/issues/1360
      a9714825
  26. 12 9月, 2016 1 次提交
  27. 08 9月, 2016 3 次提交
  28. 07 9月, 2016 1 次提交
    • A
      Introduce UnzipperProvider (#3004) · ca17c1cf
      Adam Barth 提交于
      This patch abstracts where the content of the zip file is stored.
      Currently, zip files are stored in the file system, but in Fuchsia,
      we're going to store them in memory (at least for the time being).
      Rather than represent a zip file as a path in the file system, we
      instead use an UnzipperProvider, which can create zip::UniqueUnzipper
      objects on demand.
      ca17c1cf
  29. 19 8月, 2016 1 次提交
  30. 17 8月, 2016 3 次提交