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

Unified 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, 4 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell/shelf_delegate_impl.cc
diff --git a/ash/shell/shelf_delegate_impl.cc b/ash/shell/shelf_delegate_impl.cc
deleted file mode 100644
index 53fdf4d7f7de4fef91b22265f6cdc29edb50c7ca..0000000000000000000000000000000000000000
--- a/ash/shell/shelf_delegate_impl.cc
+++ /dev/null
@@ -1,49 +0,0 @@
-// 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 "base/strings/string_util.h"
-
-namespace ash {
-namespace shell {
-
-ShelfDelegateImpl::ShelfDelegateImpl() {}
-
-ShelfDelegateImpl::~ShelfDelegateImpl() {}
-
-void ShelfDelegateImpl::OnShelfCreated(Shelf* shelf) {}
-
-void ShelfDelegateImpl::OnShelfDestroyed(Shelf* shelf) {}
-
-void ShelfDelegateImpl::OnShelfAlignmentChanged(Shelf* shelf) {}
-
-void ShelfDelegateImpl::OnShelfAutoHideBehaviorChanged(Shelf* shelf) {}
-
-void ShelfDelegateImpl::OnShelfAutoHideStateChanged(Shelf* shelf) {}
-
-void ShelfDelegateImpl::OnShelfVisibilityStateChanged(Shelf* shelf) {}
-
-ShelfID ShelfDelegateImpl::GetShelfIDForAppID(const std::string& app_id) {
- return 0;
-}
-
-bool ShelfDelegateImpl::HasShelfIDToAppIDMapping(ShelfID id) const {
- return false;
-}
-
-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;
-}
-
-void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) {}
-
-} // namespace shell
-} // namespace ash
« 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