OLD | NEW |
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 Loading... |
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 |
OLD | NEW |