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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bee729277a42f27b9f5fbbf01079f1fdf45f97fe |
--- /dev/null |
+++ b/chrome/browser/search/instant_unittest_base.h |
@@ -0,0 +1,25 @@ |
+// 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. |
+ |
+#ifndef CHROME_BROWSER_SEARCH_INSTANT_UNITTEST_BASE_H_ |
+#define CHROME_BROWSER_SEARCH_INSTANT_UNITTEST_BASE_H_ |
+ |
+#include <string> |
+ |
+#include "chrome/browser/search/instant_service.h" |
+#include "chrome/browser/search_engines/template_url_service.h" |
+#include "chrome/test/base/browser_with_test_window_test.h" |
+ |
+class InstantUnitTestBase : public BrowserWithTestWindowTest { |
samarth
2013/08/12 19:07:28
Comments for what this provides.
Anuj
2013/08/13 00:18:09
Done.
|
+ protected: |
+ virtual void SetUp() OVERRIDE; |
+ virtual void TearDown() OVERRIDE; |
+ void SetSearchProvider(const std::string& base_url); |
samarth
2013/08/12 19:07:28
Comments for these two, please.
Anuj
2013/08/13 00:18:09
Done.
|
+ void NotifyGoogleBaseURLUpdate(const std::string& new_google_base_url); |
+ |
+ InstantService* instant_service_; |
+ TemplateURLService* template_url_service_; |
+}; |
+ |
+#endif // CHROME_BROWSER_SEARCH_INSTANT_UNITTEST_BASE_H_ |