| 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.ntp; | 5 package org.chromium.chrome.browser.ntp; |
| 6 | 6 |
| 7 import android.animation.Animator; | 7 import android.animation.Animator; |
| 8 import android.animation.AnimatorListenerAdapter; | 8 import android.animation.AnimatorListenerAdapter; |
| 9 import android.animation.ObjectAnimator; | 9 import android.animation.ObjectAnimator; |
| 10 import android.app.Activity; | 10 import android.app.Activity; |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 @Override | 277 @Override |
| 278 public void onFailedToSetForcedAccount(String forcedAccountName) { | 278 public void onFailedToSetForcedAccount(String forcedAccountName) { |
| 279 // TODO(bauerb): make sure we shouldn't see SignInPromoView. | 279 // TODO(bauerb): make sure we shouldn't see SignInPromoView. |
| 280 assert false : "No forced accounts in SignInPromoView"; | 280 assert false : "No forced accounts in SignInPromoView"; |
| 281 } | 281 } |
| 282 }); | 282 }); |
| 283 | 283 |
| 284 return signInPromoView; | 284 return signInPromoView; |
| 285 } | 285 } |
| 286 } | 286 } |
| OLD | NEW |