1. 09 5月, 2015 1 次提交
  2. 08 5月, 2015 2 次提交
  3. 07 5月, 2015 2 次提交
    • C
      Dart: Adds mojom pub package. · 6e8347d0
      Colin Blundell 提交于
      Creates generate.dart script that installs generated .mojom.dart files into
      the mojom pub package.
      
      Updates Sky's deploy_sdk.py script to put mojom.dart files in locations where
      they can be consumed by the generate.dart script once the SDK is published and
      obtained via "pub get".
      
      This CL is adapted from a patch by zra@google.com; most of the work here is his.
      
      R=iposva@google.com
      
      Review URL: https://codereview.chromium.org/1106383006
      6e8347d0
    • J
      Add Observatory to sky dart_controller · 76da439f
      John McCutchan 提交于
      - Bump Dart and Observatory DEPS to 45576 and 45565 respectively.
      - Include 'dart:io' in snapshot
      - Add 'dart:io' native bindings to sky bindings.
      - Initialize 'dart:io' in sky dart_controller.
      - Include Observatory and service isolate resources in build.
      - Bring up service isolate.
      - Start handle watcher isolate from service isolate (hides handle watcher isolate from debugger and Observatory).
      - Hook up debugger.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1107803002
      76da439f
  4. 06 5月, 2015 3 次提交
    • J
      Update from https://crrev.com/328418 · 04dec88f
      James Robinson 提交于
      This includes the switch to libc++ on android.
      
      Fixes outside of the rolled code:
      
      *) ::TestSuite -> base::TestSuite
      *) base::ScopedPtrHashMap's second parameter Value->scoped_ptr<Value>
      *) re2 std::tr1 changes from upstream libc++ changes
      *) tracked_objects:: api changes in mojo/common/task_tracker*
      
      Review URL: https://codereview.chromium.org/1128733002
      04dec88f
    • J
      Fix up strings Sky passes to base/trace_event · 209153d1
      James Robinson 提交于
      String parameters passed to the trace macros in base/trace_event must
      either be std::string (which Sky doesn't use very much), pointers to
      null terminated C-style strings that live forever (like a string
      literal) pointers to C-style strings that are annotated by macro as
      needing to be copied. This fixes up a few instances that passed pointers
      to temporary strings without the copying annotation or pointers to
      non-null-terminated strings so the trace data doesn't have random
      garbage memory in it.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1107853003
      209153d1
    • J
      Update from https://crrev.com/327068 · 3507c90d
      James Robinson 提交于
      This rolls in //base, //build and //sandbox/linux and updates other
      things to match, in particular:
      
      *) Update build_v8.patch
      *) Add junit, mockito and roboelectric to DEPS for android test rules
      *) Update DEPS for grit
      *) Fix up various GN files for os->target_os rename
      *) Fix up a few places that were using //base/float_util to use std::isnan
      *) Fix up a few places using ApiCompatibilityUtil to use Android SDK directly
      
      as well as a few miscellaneous fixes.
      
      Many portions based on ncbray's work in
      https://codereview.chromium.org/1108173002/
      
      R=ncbray@chromium.org
      TBR=ncbray@chromium.org
      
      Review URL: https://codereview.chromium.org/1124763003
      3507c90d
  5. 05 5月, 2015 3 次提交
  6. 02 5月, 2015 1 次提交
  7. 01 5月, 2015 1 次提交
  8. 29 4月, 2015 3 次提交
  9. 28 4月, 2015 9 次提交
  10. 25 4月, 2015 2 次提交
  11. 24 4月, 2015 2 次提交
  12. 22 4月, 2015 9 次提交
  13. 21 4月, 2015 2 次提交
    • H
      [Effen] Only skip rows we're showing, when skipping past the rows that we've... · c1dd855d
      Hixie 提交于
      [Effen] Only skip rows we're showing, when skipping past the rows that we've scrolled beyond in the stock list.
      
      Currently, if you then scroll down N items with a filter set, we select which
      stock to show by taking the entire list of stocks, skipping the first N, then
      filtering the list, then selecting as many stocks as needed to fill the list.
      
      So suppose the list is A, B, Cx, Dx, Ex, F, and the filter is "x", and you've
      scrolled down 1 item.
      
      Currently we'd show Cx, Dx, Ex.
      
      Scroll down 1 again.
      
      We still show Cx, Dx, Ex.
      
      What we _should_ show is Dx, Ex if you've scrolled down 1, and just Ex if you've
      scrolled two.
      
      This patch fixes this. We now skip rows _after_ filtering. This fixes
      the bug whereby if you set a filter then fling the list, we show the
      same item over and over as if in a loop.
      
      R=eseidel@chromium.org
      
      Review URL: https://codereview.chromium.org/1057603006
      c1dd855d
    • H
      [Effen] Make the material splashes a bit lighter. · 0b125319
      Hixie 提交于
      TBR=eseidel
      
      Review URL: https://codereview.chromium.org/1065643003
      0b125319