Index: chrome/browser/ui/browser_iterator.cc |
diff --git a/chrome/browser/ui/browser_iterator.cc b/chrome/browser/ui/browser_iterator.cc |
deleted file mode 100644 |
index e2c22d917f9f34038a240f4debda72bea32d0db9..0000000000000000000000000000000000000000 |
--- a/chrome/browser/ui/browser_iterator.cc |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-// Copyright (c) 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 "chrome/browser/ui/browser_iterator.h" |
- |
-// TODO(scottmg): Remove this file entirely. http://crbug.com/558054. |
- |
-namespace chrome { |
- |
-BrowserIterator::BrowserIterator() |
- : browser_list_(BrowserList::GetInstance()), |
- iterator_(browser_list_->begin()) { |
-} |
- |
-BrowserIterator::~BrowserIterator() { |
-} |
- |
-void BrowserIterator::Next() { |
- ++iterator_; |
-} |
- |
-} // namespace chrome |