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

Unified Diff: chrome/browser/search/most_visited_iframe_source_unittest.cc

Issue 1362223002: Cleanup: Remove references to tests that no longer exists / are unused. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IWYU Created 5 years, 3 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
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_;
-};

Powered by Google App Engine
This is Rietveld 408576698