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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/snackbar/DataUseSnackbarController.java

Issue 1606043004: Remove dismissForEachType() from SnackbarController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments Created 4 years, 11 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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.snackbar; 5 package org.chromium.chrome.browser.snackbar;
6 6
7 import android.content.Context; 7 import android.content.Context;
8 8
9 import org.chromium.chrome.R; 9 import org.chromium.chrome.R;
10 import org.chromium.chrome.browser.EmbedContentViewActivity; 10 import org.chromium.chrome.browser.EmbedContentViewActivity;
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 DataUseUIActions.ENDED_SNACKBAR_MORE_CLICKED); 83 DataUseUIActions.ENDED_SNACKBAR_MORE_CLICKED);
84 break; 84 break;
85 default: 85 default:
86 assert false; 86 assert false;
87 break; 87 break;
88 } 88 }
89 } 89 }
90 90
91 @Override 91 @Override
92 public void onDismissNoAction(Object actionData) {} 92 public void onDismissNoAction(Object actionData) {}
93
94 @Override
95 public void onDismissForEachType(boolean isTimeout) {}
96 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698