Index: chrome/browser/search/most_visited_iframe_source_unittest.cc |
diff --git a/chrome/browser/search/most_visited_iframe_source_unittest.cc b/chrome/browser/search/most_visited_iframe_source_unittest.cc |
deleted file mode 100644 |
index f330913c6ba3bb723ac0d4bac6fb19e32c8c7d35..0000000000000000000000000000000000000000 |
--- a/chrome/browser/search/most_visited_iframe_source_unittest.cc |
+++ /dev/null |
@@ -1,25 +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 "base/bind.h" |
-#include "base/metrics/histogram.h" |
-#include "base/metrics/statistics_recorder.h" |
-#include "base/strings/stringprintf.h" |
-#include "chrome/browser/search/most_visited_iframe_source.h" |
-#include "testing/gtest/include/gtest/gtest.h" |
- |
-class MostVisitedIframeSourceTest : public testing::Test { |
- public: |
- void ExpectNullData(base::RefCountedMemory* data) { |
- EXPECT_EQ(NULL, data); |
- } |
- |
- protected: |
- MostVisitedIframeSource* source() { return source_.get(); } |
- |
- private: |
- void SetUp() override { source_.reset(new MostVisitedIframeSource()); } |
- |
- scoped_ptr<MostVisitedIframeSource> source_; |
-}; |