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.enhancedbookmarks; | 5 package org.chromium.chrome.browser.enhancedbookmarks; |
6 | 6 |
7 import android.app.Activity; | 7 import android.app.Activity; |
8 import android.content.Context; | 8 import android.content.Context; |
9 import android.support.v7.app.ActionBarDrawerToggle; | 9 import android.support.v7.app.ActionBarDrawerToggle; |
10 import android.support.v7.widget.Toolbar; | 10 import android.support.v7.widget.Toolbar; |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 getMenu().setGroupVisible(R.id.selection_mode_menu_group, false); | 261 getMenu().setGroupVisible(R.id.selection_mode_menu_group, false); |
262 setBackgroundColor(getResources().getColor(R.color.default_primary_c
olor)); | 262 setBackgroundColor(getResources().getColor(R.color.default_primary_c
olor)); |
263 | 263 |
264 numberRollView.setVisibility(View.GONE); | 264 numberRollView.setVisibility(View.GONE); |
265 numberRollView.setNumber(0, false); | 265 numberRollView.setNumber(0, false); |
266 | 266 |
267 mDelegate.notifyStateChange(this); | 267 mDelegate.notifyStateChange(this); |
268 } | 268 } |
269 } | 269 } |
270 } | 270 } |
OLD | NEW |