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

Side by Side Diff: ui/app_list/app_list_view_delegate.cc

Issue 1802473002: Add deprecation warning banner to App Launcher on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@20170310-MacViews-ViewsUnittests
Patch Set: self nits Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "ui/app_list/app_list_view_delegate.h" 5 #include "ui/app_list/app_list_view_delegate.h"
6 6
7 namespace app_list { 7 namespace app_list {
8 8
9 AppListViewDelegate::User::User() : active(false) { 9 AppListViewDelegate::User::User() : active(false) {
10 } 10 }
11 11
12 AppListViewDelegate::User::User(const User& other) = default; 12 AppListViewDelegate::User::User(const User& other) = default;
13 13
14 AppListViewDelegate::User::~User() {} 14 AppListViewDelegate::User::~User() {}
15 15
16 } // app_list 16 #if !defined(OS_CHROMEOS)
17 base::string16 AppListViewDelegate::GetMessageTitle() const {
18 return base::string16();
19 }
20 base::string16 AppListViewDelegate::GetMessageText() const {
21 return base::string16();
22 }
23 base::string16 AppListViewDelegate::GetAppsShortcutName() const {
24 return base::string16();
25 }
26 base::string16 AppListViewDelegate::GetLearnMoreText() const {
27 return base::string16();
28 }
29 base::string16 AppListViewDelegate::GetLearnMoreLink() const {
30 return base::string16();
31 }
32 gfx::ImageSkia* AppListViewDelegate::GetAppsIcon() const {
33 return nullptr;
34 }
35 void AppListViewDelegate::OpenLearnMoreLink() {}
36 #endif
37
38 } // namespace app_list
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698