| Index: chrome/browser/ui/views/aura/app_list/app_list_view_delegate.cc
|
| diff --git a/chrome/browser/ui/views/aura/app_list/app_list_view_delegate.cc b/chrome/browser/ui/views/aura/app_list/app_list_view_delegate.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c62477873a9e14a4d58d928f27d1d2d95f8d0ce2
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/views/aura/app_list/app_list_view_delegate.cc
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2011 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 "chrome/browser/ui/views/aura/app_list/app_list_view_delegate.h"
|
| +
|
| +#include "chrome/browser/ui/views/aura/app_list/chrome_app_list_item.h"
|
| +
|
| +AppListViewDelegate::AppListViewDelegate() {
|
| +}
|
| +
|
| +AppListViewDelegate::~AppListViewDelegate() {
|
| +}
|
| +
|
| +void AppListViewDelegate::OnAppListItemActivated(
|
| + aura_shell::AppListItemModel* item,
|
| + int event_flags) {
|
| + static_cast<ChromeAppListItem*>(item)->Activate(event_flags);
|
| +}
|
|
|