blob: bc4af4e4f5d527d6e32c4bb9665d7b911e1d55fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// Copyright 2013 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 "ash/shell/shelf_delegate_impl.h"
#include "ash/shell.h"
#include "ash/shell/toplevel_window.h"
#include "ash/shell/window_watcher.h"
#include "ash/wm/window_util.h"
#include "base/strings/string_util.h"
#include "grit/ash_resources.h"
namespace ash {
namespace shell {
ShelfDelegateImpl::ShelfDelegateImpl(WindowWatcher* watcher)
: watcher_(watcher) {
}
ShelfDelegateImpl::~ShelfDelegateImpl() {
}
void ShelfDelegateImpl::OnShelfCreated(Shelf* shelf) {
}
void ShelfDelegateImpl::OnShelfDestroyed(Shelf* shelf) {
}
ShelfID ShelfDelegateImpl::GetShelfIDForAppID(const std::string& app_id) {
return 0;
}
const std::string& ShelfDelegateImpl::GetAppIDForShelfID(ShelfID id) {
return base::EmptyString();
}
void ShelfDelegateImpl::PinAppWithID(const std::string& app_id) {
}
bool ShelfDelegateImpl::IsAppPinned(const std::string& app_id) {
return false;
}
bool ShelfDelegateImpl::CanPin() const {
return false;
}
void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) {
}
} // namespace shell
} // namespace ash
|