Index: ash/test/shelf_item_delegate_manager_test_api.cc |
diff --git a/ash/test/shelf_item_delegate_manager_test_api.cc b/ash/test/shelf_item_delegate_manager_test_api.cc |
deleted file mode 100644 |
index 002336ec41683cc8277b7568ca83952b3e0f16fd..0000000000000000000000000000000000000000 |
--- a/ash/test/shelf_item_delegate_manager_test_api.cc |
+++ /dev/null |
@@ -1,28 +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/test/shelf_item_delegate_manager_test_api.h" |
- |
-#include "ash/common/shelf/shelf_item_delegate.h" |
-#include "ash/common/shelf/shelf_item_delegate_manager.h" |
-#include "base/stl_util.h" |
- |
-namespace ash { |
-namespace test { |
- |
-ShelfItemDelegateManagerTestAPI::ShelfItemDelegateManagerTestAPI( |
- ShelfItemDelegateManager* manager) |
- : manager_(manager) { |
- DCHECK(manager_); |
-} |
- |
-void ShelfItemDelegateManagerTestAPI::RemoveAllShelfItemDelegateForTest() { |
- STLDeleteContainerPairSecondPointers( |
- manager_->id_to_item_delegate_map_.begin(), |
- manager_->id_to_item_delegate_map_.end()); |
- manager_->id_to_item_delegate_map_.clear(); |
-} |
- |
-} // namespace test |
-} // namespace ash |