Index: chrome/browser/search_engines/template_url_service_unittest.cc |
diff --git a/chrome/browser/search_engines/template_url_service_unittest.cc b/chrome/browser/search_engines/template_url_service_unittest.cc |
index 5e25e0f137c290a0576b60a76d36058045d0ec5d..ffd3cb422d3c88ae1535bbe85ff475583d016ff0 100644 |
--- a/chrome/browser/search_engines/template_url_service_unittest.cc |
+++ b/chrome/browser/search_engines/template_url_service_unittest.cc |
@@ -37,30 +37,6 @@ using ::testing::StrictMock; |
namespace { |
-// TestSearchTermsData -------------------------------------------------------- |
- |
-// Simple implementation of SearchTermsData. |
-class TestSearchTermsData : public SearchTermsData { |
- public: |
- explicit TestSearchTermsData(const char* google_base_url); |
- |
- virtual std::string GoogleBaseURLValue() const OVERRIDE; |
- |
- private: |
- std::string google_base_url_; |
- |
- DISALLOW_COPY_AND_ASSIGN(TestSearchTermsData); |
-}; |
- |
-TestSearchTermsData::TestSearchTermsData(const char* google_base_url) |
- : google_base_url_(google_base_url) { |
-} |
- |
-std::string TestSearchTermsData::GoogleBaseURLValue() const { |
- return google_base_url_; |
-} |
- |
- |
// QueryHistoryCallbackImpl --------------------------------------------------- |
struct QueryHistoryCallbackImpl { |