Chromium Code Reviews| Index: chrome/browser/search/instant_unittest_base.h |
| diff --git a/chrome/browser/search/instant_unittest_base.h b/chrome/browser/search/instant_unittest_base.h |
| index a97e595cebfa5353853d7ba8662001d5af35d27d..5e197cb9a428f29fbd7e5890f99f89541cd23ae5 100644 |
| --- a/chrome/browser/search/instant_unittest_base.h |
| +++ b/chrome/browser/search/instant_unittest_base.h |
| @@ -25,8 +25,8 @@ class InstantUnitTestBase : public BrowserWithTestWindowTest { |
| virtual void SetUp() OVERRIDE; |
| virtual void TearDown() OVERRIDE; |
| - virtual void SetUpWithoutCacheableNTP(); |
| - virtual void SetUpHelper(); |
| + void SetUpWithoutCacheableNTP(); |
|
Jered
2014/02/07 03:02:26
We should delete this. Is that easy to do in this
kmadhusu
2014/02/11 01:40:02
Will fix it in a separate CL.
|
| + void SetUpWithoutQueryExtraction(); |
| // Adds and sets the default search provider using the base_url. |
| // The base_url should have the http[s]:// prefix and a trailing / after the |
| @@ -45,6 +45,11 @@ class InstantUnitTestBase : public BrowserWithTestWindowTest { |
| InstantService* instant_service_; |
| TemplateURLService* template_url_service_; |
| scoped_ptr<base::FieldTrialList> field_trial_list_; |
| + |
| + private: |
| + void SetUpHelper(); |
| + |
| + bool enable_query_extraction_; |
| }; |
| #endif // CHROME_BROWSER_SEARCH_INSTANT_UNITTEST_BASE_H_ |