| Index: ash/shell/app_list.cc
|
| diff --git a/ash/shell/app_list.cc b/ash/shell/app_list.cc
|
| index 1f6fc49b2018d2f7da496a11c03eb1a48378320b..dd7adc596393405dea08fbed8814d41dceec7d5d 100644
|
| --- a/ash/shell/app_list.cc
|
| +++ b/ash/shell/app_list.cc
|
| @@ -9,6 +9,8 @@
|
| #include "ash/shell/example_factory.h"
|
| #include "ash/shell/toplevel_window.h"
|
| #include "base/basictypes.h"
|
| +#include "base/callback.h"
|
| +#include "base/files/file_path.h"
|
| #include "base/i18n/case_conversion.h"
|
| #include "base/i18n/string_search.h"
|
| #include "base/strings/string_util.h"
|
| @@ -231,6 +233,11 @@ class ExampleAppListViewDelegate : public app_list::AppListViewDelegate {
|
| return NULL;
|
| }
|
|
|
| + virtual void GetShortcutPathForApp(
|
| + const std::string& app_id,
|
| + const base::Callback<void(const base::FilePath&)>& callback) OVERRIDE {
|
| + }
|
| +
|
| virtual void ActivateAppListItem(app_list::AppListItemModel* item,
|
| int event_flags) OVERRIDE {
|
| static_cast<WindowTypeLauncherItem*>(item)->Activate(event_flags);
|
|
|