| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |