Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ui/base/models/avatar_menu_item_model.h" | |
|
tapted
2013/07/31 05:43:53
nit: blank line after a .cc's "own" header
calamity
2013/08/01 08:35:45
Done.
| |
| 6 #include "ui/gfx/image/image.h" | |
| 7 | |
| 8 namespace ui { | |
| 9 | |
| 10 AvatarMenuItemModel::AvatarMenuItemModel(size_t model_index, | |
| 11 const gfx::Image& icon) | |
| 12 : icon(icon), | |
| 13 active(false), | |
| 14 signed_in(false), | |
| 15 signin_required(false), | |
| 16 model_index(model_index) { | |
| 17 } | |
| 18 | |
| 19 AvatarMenuItemModel::~AvatarMenuItemModel() { | |
| 20 } | |
| 21 | |
| 22 } // namespace ui | |
| OLD | NEW |