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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/toolbar/ToolbarTablet.java

Issue 2548013002: Remove redundant field initialization in Java code. (Closed)
Patch Set: rebase Created 4 years 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.toolbar; 5 package org.chromium.chrome.browser.toolbar;
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.AnimatorSet; 9 import android.animation.AnimatorSet;
10 import android.annotation.SuppressLint; 10 import android.annotation.SuppressLint;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 private TintedImageButton mBackButton; 46 private TintedImageButton mBackButton;
47 private TintedImageButton mForwardButton; 47 private TintedImageButton mForwardButton;
48 private TintedImageButton mReloadButton; 48 private TintedImageButton mReloadButton;
49 private TintedImageButton mBookmarkButton; 49 private TintedImageButton mBookmarkButton;
50 private TintedImageButton mSaveOfflineButton; 50 private TintedImageButton mSaveOfflineButton;
51 private ImageButton mAccessibilitySwitcherButton; 51 private ImageButton mAccessibilitySwitcherButton;
52 52
53 private OnClickListener mBookmarkListener; 53 private OnClickListener mBookmarkListener;
54 private OnClickListener mTabSwitcherListener; 54 private OnClickListener mTabSwitcherListener;
55 55
56 private boolean mIsInTabSwitcherMode = false; 56 private boolean mIsInTabSwitcherMode;
57 57
58 private boolean mShowTabStack; 58 private boolean mShowTabStack;
59 private boolean mToolbarButtonsVisible; 59 private boolean mToolbarButtonsVisible;
60 private TintedImageButton[] mToolbarButtons; 60 private TintedImageButton[] mToolbarButtons;
61 61
62 private NavigationPopup mNavigationPopup; 62 private NavigationPopup mNavigationPopup;
63 63
64 private TabSwitcherDrawable mTabSwitcherButtonDrawable; 64 private TabSwitcherDrawable mTabSwitcherButtonDrawable;
65 private TabSwitcherDrawable mTabSwitcherButtonDrawableLight; 65 private TabSwitcherDrawable mTabSwitcherButtonDrawableLight;
66 66
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 } 643 }
644 644
645 mButtonVisibilityAnimators = null; 645 mButtonVisibilityAnimators = null;
646 } 646 }
647 }); 647 });
648 648
649 return set; 649 return set;
650 } 650 }
651 651
652 } 652 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698