| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_VIEWS_AURA_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_AURA_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_AURA_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_AURA_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "ash/app_list/app_list_view_delegate.h" | 9 #include "ash/app_list/app_list_view_delegate.h" |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 | 12 |
| 13 class AppListViewDelegate : public aura_shell::AppListViewDelegate { | 13 class AppListViewDelegate : public ash::AppListViewDelegate { |
| 14 public: | 14 public: |
| 15 AppListViewDelegate(); | 15 AppListViewDelegate(); |
| 16 virtual ~AppListViewDelegate(); | 16 virtual ~AppListViewDelegate(); |
| 17 | 17 |
| 18 private: | 18 private: |
| 19 // Overridden from aura_shell::AppListViewDelegate: | 19 // Overridden from ash::AppListViewDelegate: |
| 20 virtual void OnAppListItemActivated(aura_shell::AppListItemModel* item, | 20 virtual void OnAppListItemActivated(ash::AppListItemModel* item, |
| 21 int event_flags) OVERRIDE; | 21 int event_flags) OVERRIDE; |
| 22 | 22 |
| 23 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); | 23 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); |
| 24 }; | 24 }; |
| 25 | 25 |
| 26 #endif // CHROME_BROWSER_UI_VIEWS_AURA_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ | 26 #endif // CHROME_BROWSER_UI_VIEWS_AURA_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ |
| OLD | NEW |