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

Side by Side 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, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/bind.h"
6 #include "base/metrics/histogram.h"
7 #include "base/metrics/statistics_recorder.h"
8 #include "base/strings/stringprintf.h"
9 #include "chrome/browser/search/most_visited_iframe_source.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11
12 class MostVisitedIframeSourceTest : public testing::Test {
13 public:
14 void ExpectNullData(base::RefCountedMemory* data) {
15 EXPECT_EQ(NULL, data);
16 }
17
18 protected:
19 MostVisitedIframeSource* source() { return source_.get(); }
20
21 private:
22 void SetUp() override { source_.reset(new MostVisitedIframeSource()); }
23
24 scoped_ptr<MostVisitedIframeSource> source_;
25 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698