litho-it/src/main/java/com/facebook/litho/widget/MountSpecLifecycleTesterDrawableSpec.java [99:108]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static void onBoundsDefined(
      ComponentContext c, ComponentLayout layout, @Prop LifecycleTracker lifecycleTracker) {
    final Rect bounds =
        new Rect(
            layout.getX(),
            layout.getY(),
            layout.getX() + layout.getWidth(),
            layout.getY() + layout.getHeight());
    lifecycleTracker.addStep(LifecycleStep.ON_BOUNDS_DEFINED, bounds);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



litho-it/src/main/java/com/facebook/litho/widget/MountSpecPureRenderLifecycleTesterSpec.java [101:110]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  static void onBoundsDefined(
      ComponentContext c, ComponentLayout layout, @Prop LifecycleTracker lifecycleTracker) {
    final Rect bounds =
        new Rect(
            layout.getX(),
            layout.getY(),
            layout.getX() + layout.getWidth(),
            layout.getY() + layout.getHeight());
    lifecycleTracker.addStep(LifecycleStep.ON_BOUNDS_DEFINED, bounds);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



