blob: 182091369bbf9ac5b262c01b2bc5ebaaf1069c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/app_list/app_list_item_model.h"
#include "ash/app_list/app_list_item_model_observer.h"
namespace ash {
AppListItemModel::AppListItemModel() {
}
AppListItemModel::~AppListItemModel() {
}
void AppListItemModel::SetIcon(const SkBitmap& icon) {
icon_ = icon;
FOR_EACH_OBSERVER(AppListItemModelObserver, observers_,
ItemIconChanged());
}
void AppListItemModel::SetTitle(const std::string& title) {
title_ = title;
FOR_EACH_OBSERVER(AppListItemModelObserver, observers_,
ItemTitleChanged());
}
void AppListItemModel::AddObserver(AppListItemModelObserver* observer) {
observers_.AddObserver(observer);
}
void AppListItemModel::RemoveObserver(AppListItemModelObserver* observer) {
observers_.RemoveObserver(observer);
}
ui::MenuModel* AppListItemModel::GetContextMenuModel() {
return NULL;
}
} // namespace ash
|