| Index: chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java b/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| index b923ba7def78ee0b3439231ce78825bb1b7b36e2..682debf0e31e68328904415768a785a58be35759 100644
|
| --- a/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBar.java
|
| @@ -186,11 +186,9 @@ public abstract class InfoBar implements InfoBarView {
|
| View closeButton = mContentView.findViewById(R.id.infobar_close_button);
|
| View primaryButton = mContentView.findViewById(R.id.button_primary);
|
| View secondaryButton = mContentView.findViewById(R.id.button_secondary);
|
| - View tertiaryButton = mContentView.findViewById(R.id.button_tertiary);
|
| if (closeButton != null) closeButton.setEnabled(state);
|
| if (primaryButton != null) primaryButton.setEnabled(state);
|
| if (secondaryButton != null) secondaryButton.setEnabled(state);
|
| - if (tertiaryButton != null) tertiaryButton.setEnabled(state);
|
| }
|
| }
|
|
|
|
|