Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Unified Diff: ui/app_list/test/app_list_test_view_delegate.cc

Issue 17370003: [Win] App launcher drag/drop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix compile Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/test/app_list_test_view_delegate.h ('k') | ui/app_list/views/app_list_item_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/test/app_list_test_view_delegate.cc
diff --git a/ui/app_list/test/app_list_test_view_delegate.cc b/ui/app_list/test/app_list_test_view_delegate.cc
index 6012933c900b3b85b6f0450ee169b542cac99b21..1b7937f418673c0d2e5fdb6bb3b390e532ef0580 100644
--- a/ui/app_list/test/app_list_test_view_delegate.cc
+++ b/ui/app_list/test/app_list_test_view_delegate.cc
@@ -4,6 +4,8 @@
#include "ui/app_list/test/app_list_test_view_delegate.h"
+#include "base/callback.h"
+#include "base/files/file_path.h"
#include "ui/gfx/image/image_skia.h"
namespace app_list {
@@ -21,6 +23,12 @@ SigninDelegate* AppListTestViewDelegate::GetSigninDelegate() {
return NULL;
}
+void AppListTestViewDelegate::GetShortcutPathForApp(
+ const std::string& app_id,
+ const base::Callback<void(const base::FilePath&)>& callback) {
+ callback.Run(base::FilePath());
+}
+
void AppListTestViewDelegate::ActivateAppListItem(AppListItemModel* item,
int event_flags) {
last_activated_ = item;
« no previous file with comments | « ui/app_list/test/app_list_test_view_delegate.h ('k') | ui/app_list/views/app_list_item_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698