Index: ui/app_list/app_list_item.cc |
diff --git a/ui/app_list/app_list_item.cc b/ui/app_list/app_list_item.cc |
deleted file mode 100644 |
index 0cac35a02364a348a35260588c55bd8714af7ce4..0000000000000000000000000000000000000000 |
--- a/ui/app_list/app_list_item.cc |
+++ /dev/null |
@@ -1,113 +0,0 @@ |
-// Copyright 2013 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 "ui/app_list/app_list_item.h" |
- |
-#include "base/logging.h" |
-#include "ui/app_list/app_list_item_observer.h" |
- |
-namespace app_list { |
- |
-AppListItem::AppListItem(const std::string& id) |
- : id_(id), |
- has_shadow_(false), |
- highlighted_(false), |
- is_installing_(false), |
- percent_downloaded_(-1) { |
-} |
- |
-AppListItem::~AppListItem() { |
- FOR_EACH_OBSERVER(AppListItemObserver, observers_, ItemBeingDestroyed()); |
-} |
- |
-void AppListItem::SetIcon(const gfx::ImageSkia& icon, bool has_shadow) { |
- icon_ = icon; |
- has_shadow_ = has_shadow; |
- FOR_EACH_OBSERVER(AppListItemObserver, observers_, ItemIconChanged()); |
-} |
- |
-void AppListItem::SetIsInstalling(bool is_installing) { |
- if (is_installing_ == is_installing) |
- return; |
- |
- is_installing_ = is_installing; |
- FOR_EACH_OBSERVER(AppListItemObserver, |
- observers_, |
- ItemIsInstallingChanged()); |
-} |
- |
-void AppListItem::SetPercentDownloaded(int percent_downloaded) { |
- if (percent_downloaded_ == percent_downloaded) |
- return; |
- |
- percent_downloaded_ = percent_downloaded; |
- FOR_EACH_OBSERVER(AppListItemObserver, |
- observers_, |
- ItemPercentDownloadedChanged()); |
-} |
- |
-void AppListItem::AddObserver(AppListItemObserver* observer) { |
- observers_.AddObserver(observer); |
-} |
- |
-void AppListItem::RemoveObserver(AppListItemObserver* observer) { |
- observers_.RemoveObserver(observer); |
-} |
- |
-void AppListItem::Activate(int event_flags) { |
-} |
- |
-const char* AppListItem::GetItemType() const { |
- static const char* app_type = ""; |
- return app_type; |
-} |
- |
-ui::MenuModel* AppListItem::GetContextMenuModel() { |
- return NULL; |
-} |
- |
-AppListItem* AppListItem::FindChildItem(const std::string& id) { |
- return NULL; |
-} |
- |
-size_t AppListItem::ChildItemCount() const { |
- return 0; |
-} |
- |
-void AppListItem::OnExtensionPreferenceChanged() {} |
- |
-bool AppListItem::CompareForTest(const AppListItem* other) const { |
- return id_ == other->id_ && |
- folder_id_ == other->folder_id_ && |
- name_ == other->name_ && |
- short_name_ == other->short_name_ && |
- GetItemType() == other->GetItemType() && |
- position_.Equals(other->position_); |
-} |
- |
-std::string AppListItem::ToDebugString() const { |
- return id_.substr(0, 8) + " '" + name_ + "'" |
- + " [" + position_.ToDebugString() + "]"; |
-} |
- |
-// Protected methods |
- |
-void AppListItem::SetName(const std::string& name) { |
- if (name_ == name && (short_name_.empty() || short_name_ == name)) |
- return; |
- name_ = name; |
- short_name_.clear(); |
- FOR_EACH_OBSERVER(AppListItemObserver, observers_, ItemNameChanged()); |
-} |
- |
-void AppListItem::SetNameAndShortName(const std::string& name, |
- const std::string& short_name) { |
- if (name_ == name && short_name_ == short_name) |
- return; |
- name_ = name; |
- short_name_ = short_name; |
- FOR_EACH_OBSERVER(AppListItemObserver, observers_, ItemNameChanged()); |
-} |
- |
-} // namespace app_list |