TileListPropertyViewBinder.java 727 B

12345678910111213141516171819
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. package org.chromium.components.browser_ui.widget.image_tiles;
  5. import androidx.recyclerview.widget.RecyclerView;
  6. import org.chromium.ui.modelutil.PropertyKey;
  7. import org.chromium.ui.modelutil.PropertyModel;
  8. import org.chromium.ui.modelutil.PropertyModelChangeProcessor.ViewBinder;
  9. /**
  10. * Binds the {@link TileListModel} with the {@link TileListView}.
  11. */
  12. class TileListPropertyViewBinder implements ViewBinder<PropertyModel, RecyclerView, PropertyKey> {
  13. @Override
  14. public void bind(PropertyModel model, RecyclerView view, PropertyKey propertyKey) {}
  15. }