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

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

Issue 2754313002: [Home] Record some user actions for the Chrome Home BottomSheet (Closed)
Patch Set: [Home] Record some user actions for the Chrome Home BottomSheet 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
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser.widget.bottomsheet; 5 package org.chromium.chrome.browser.widget.bottomsheet;
6 6
7 import org.chromium.chrome.browser.widget.bottomsheet.BottomSheet.BottomSheetCon tent;
8
7 /** 9 /**
8 * An empty base implementation of the {@link BottomSheetObserver} interface. 10 * An empty base implementation of the {@link BottomSheetObserver} interface.
9 */ 11 */
10 public class EmptyBottomSheetObserver implements BottomSheetObserver { 12 public class EmptyBottomSheetObserver implements BottomSheetObserver {
11 @Override 13 @Override
12 public void onSheetOpened() {} 14 public void onSheetOpened() {}
13 15
14 @Override 16 @Override
15 public void onSheetClosed() {} 17 public void onSheetClosed() {}
16 18
17 @Override 19 @Override
18 public void onLoadUrl(String url) {} 20 public void onLoadUrl(String url) {}
19 21
20 @Override 22 @Override
21 public void onSheetOffsetChanged(float heightFraction) {} 23 public void onSheetOffsetChanged(float heightFraction) {}
22 24
23 @Override 25 @Override
24 public void onTransitionPeekToHalf(float transitionFraction) {} 26 public void onTransitionPeekToHalf(float transitionFraction) {}
27
28 @Override
29 public void onSheetStateChanged(int newState) {}
30
31 @Override
32 public void onSheetContentChanged(BottomSheetContent newContent) {}
25 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698