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

Unified Diff: chrome/browser/ui/views/aura/app_list/app_list_view_delegate.cc

Issue 8890049: [Aura] Implement views-based applist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win_aura Created 9 years 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
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);
+}

Powered by Google App Engine
This is Rietveld 408576698