1// Copyright (c) 2012 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 "chrome/browser/ui/ash/launcher/chrome_launcher_app_menu_item.h"
6
7ChromeLauncherAppMenuItem::ChromeLauncherAppMenuItem(
8    const base::string16 title,
9    const gfx::Image* icon,
10    bool has_leading_separator)
11    : title_(title),
12      icon_(icon ? gfx::Image(*icon) : gfx::Image()),
13      has_leading_separator_(has_leading_separator) {
14}
15
16ChromeLauncherAppMenuItem::~ChromeLauncherAppMenuItem() {
17}
18
19bool ChromeLauncherAppMenuItem::IsActive() const {
20  return false;
21}
22
23bool ChromeLauncherAppMenuItem::IsEnabled() const {
24  return false;
25}
26
27void ChromeLauncherAppMenuItem::Execute(int event_flags) {
28}
29