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

Side by Side Diff: ui/base/models/avatar_menu_item_model.cc

Issue 20656002: Add profile selector menu to app list. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo app_list_service_mac changes Created 7 years, 4 months 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698