Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(955)

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/widget/EmptyBottomSheetObserver.java

Issue 2753773006: [Home] Move bottom sheet classes to widget/bottomsheet (Closed)
Patch Set: Fix bottom_sheet_bottom_nav.xml Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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
5 package org.chromium.chrome.browser.widget;
6
7 /**
8 * An empty base implementation of the {@link BottomSheetObserver} interface.
9 */
10 public class EmptyBottomSheetObserver implements BottomSheetObserver {
11 @Override
12 public void onSheetOpened() {}
13
14 @Override
15 public void onSheetClosed() {}
16
17 @Override
18 public void onLoadUrl(String url) {}
19
20 @Override
21 public void onSheetOffsetChanged(float heightFraction) {}
22
23 @Override
24 public void onTransitionPeekToHalf(float transitionFraction) {}
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698