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

Side by Side Diff: ash/shell/shelf_delegate_impl.cc

Issue 2279533002: ash: Convert ShelfDelegate to use WmShelf* instead of Shelf* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: curlies Created 4 years, 3 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
« no previous file with comments | « ash/shell/shelf_delegate_impl.h ('k') | ash/shell/shell_delegate_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ash/shell/shelf_delegate_impl.h"
6
7 #include "base/strings/string_util.h"
8
9 namespace ash {
10 namespace shell {
11
12 ShelfDelegateImpl::ShelfDelegateImpl() {}
13
14 ShelfDelegateImpl::~ShelfDelegateImpl() {}
15
16 void ShelfDelegateImpl::OnShelfCreated(Shelf* shelf) {}
17
18 void ShelfDelegateImpl::OnShelfDestroyed(Shelf* shelf) {}
19
20 void ShelfDelegateImpl::OnShelfAlignmentChanged(Shelf* shelf) {}
21
22 void ShelfDelegateImpl::OnShelfAutoHideBehaviorChanged(Shelf* shelf) {}
23
24 void ShelfDelegateImpl::OnShelfAutoHideStateChanged(Shelf* shelf) {}
25
26 void ShelfDelegateImpl::OnShelfVisibilityStateChanged(Shelf* shelf) {}
27
28 ShelfID ShelfDelegateImpl::GetShelfIDForAppID(const std::string& app_id) {
29 return 0;
30 }
31
32 bool ShelfDelegateImpl::HasShelfIDToAppIDMapping(ShelfID id) const {
33 return false;
34 }
35
36 const std::string& ShelfDelegateImpl::GetAppIDForShelfID(ShelfID id) {
37 return base::EmptyString();
38 }
39
40 void ShelfDelegateImpl::PinAppWithID(const std::string& app_id) {}
41
42 bool ShelfDelegateImpl::IsAppPinned(const std::string& app_id) {
43 return false;
44 }
45
46 void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) {}
47
48 } // namespace shell
49 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell/shelf_delegate_impl.h ('k') | ash/shell/shell_delegate_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698