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

Side by Side Diff: components/search/search_unittest.cc

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/search/search.h" 5 #include "components/search/search.h"
6 6
7 #include "base/memory/scoped_ptr.h"
7 #include "base/metrics/field_trial.h" 8 #include "base/metrics/field_trial.h"
8 #include "base/metrics/statistics_recorder.h" 9 #include "base/metrics/statistics_recorder.h"
9 #include "build/build_config.h" 10 #include "build/build_config.h"
10 #include "components/variations/entropy_provider.h" 11 #include "components/variations/entropy_provider.h"
11 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
12 13
13 namespace search { 14 namespace search {
14 15
15 class EmbeddedSearchFieldTrialTest : public testing::Test { 16 class EmbeddedSearchFieldTrialTest : public testing::Test {
16 protected: 17 protected:
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 EnableQueryExtractionForTesting(); 232 EnableQueryExtractionForTesting();
232 ASSERT_TRUE(base::FieldTrialList::CreateFieldTrial( 233 ASSERT_TRUE(base::FieldTrialList::CreateFieldTrial(
233 "EmbeddedSearch", "Group1 espv:2 query_extraction:0")); 234 "EmbeddedSearch", "Group1 espv:2 query_extraction:0"));
234 EXPECT_TRUE(IsInstantExtendedAPIEnabled()); 235 EXPECT_TRUE(IsInstantExtendedAPIEnabled());
235 EXPECT_TRUE(IsQueryExtractionEnabled()); 236 EXPECT_TRUE(IsQueryExtractionEnabled());
236 EXPECT_EQ(2ul, EmbeddedSearchPageVersion()); 237 EXPECT_EQ(2ul, EmbeddedSearchPageVersion());
237 } 238 }
238 #endif // !defined(OS_IOS) && !defined(OS_ANDROID) 239 #endif // !defined(OS_IOS) && !defined(OS_ANDROID)
239 240
240 } // namespace search 241 } // namespace search
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698