Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
Theresa
2017/03/28 20:40:28
s/2016/2017
Finnur
2017/03/31 14:26:49
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.chrome.browser.photo_picker; | |
| 6 | |
| 7 import android.content.Context; | |
| 8 import android.util.AttributeSet; | |
| 9 | |
| 10 import org.chromium.chrome.R; | |
| 11 import org.chromium.chrome.browser.widget.selection.SelectableListToolbar; | |
| 12 | |
| 13 /** | |
| 14 * Handles toolbar functionality for the Photo Picker class. | |
| 15 */ | |
| 16 public class PhotoPickerToolbar extends SelectableListToolbar<PickerBitmap> { | |
| 17 public PhotoPickerToolbar(Context context, AttributeSet attrs) { | |
| 18 super(context, attrs); | |
| 19 inflateMenu(R.menu.file_picker_menu); | |
| 20 } | |
| 21 } | |
| OLD | NEW |