| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/search_engines/template_url.h" | 10 #include "chrome/browser/search_engines/template_url.h" |
| 11 #include "chrome/browser/search_engines/template_url_fetcher.h" | 11 #include "chrome/browser/search_engines/template_url_fetcher.h" |
| 12 #include "chrome/browser/search_engines/template_url_fetcher_callbacks.h" | 12 #include "chrome/browser/search_engines/template_url_fetcher_callbacks.h" |
| 13 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" | 13 #include "chrome/browser/search_engines/template_url_fetcher_factory.h" |
| 14 #include "chrome/browser/search_engines/template_url_service.h" | 14 #include "chrome/browser/search_engines/template_url_service.h" |
| 15 #include "chrome/browser/search_engines/template_url_service_test_util.h" | 15 #include "chrome/browser/search_engines/template_url_service_test_util.h" |
| 16 #include "chrome/common/chrome_paths.h" | 16 #include "chrome/common/chrome_paths.h" |
| 17 #include "chrome/test/base/testing_profile.h" | 17 #include "chrome/test/base/testing_profile.h" |
| 18 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
| 19 #include "net/test/spawned_test_server.h" | 19 #include "net/test/spawned_test_server/spawned_test_server.h" |
| 20 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
| 21 | 21 |
| 22 class TemplateURLFetcherTest; | 22 class TemplateURLFetcherTest; |
| 23 | 23 |
| 24 // Handles callbacks from TemplateURLFetcher. | 24 // Handles callbacks from TemplateURLFetcher. |
| 25 class TemplateURLFetcherTestCallbacks : public TemplateURLFetcherCallbacks { | 25 class TemplateURLFetcherTestCallbacks : public TemplateURLFetcherCallbacks { |
| 26 public: | 26 public: |
| 27 explicit TemplateURLFetcherTestCallbacks(TemplateURLFetcherTest* test) | 27 explicit TemplateURLFetcherTestCallbacks(TemplateURLFetcherTest* test) |
| 28 : test_(test) { | 28 : test_(test) { |
| 29 } | 29 } |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 StartDownload(keyword, osdd_file_name, | 317 StartDownload(keyword, osdd_file_name, |
| 318 TemplateURLFetcher::EXPLICIT_PROVIDER, true); | 318 TemplateURLFetcher::EXPLICIT_PROVIDER, true); |
| 319 ASSERT_EQ(0, add_provider_called_); | 319 ASSERT_EQ(0, add_provider_called_); |
| 320 ASSERT_EQ(1, callbacks_destroyed_); | 320 ASSERT_EQ(1, callbacks_destroyed_); |
| 321 | 321 |
| 322 WaitForDownloadToFinish(); | 322 WaitForDownloadToFinish(); |
| 323 ASSERT_EQ(1, add_provider_called_); | 323 ASSERT_EQ(1, add_provider_called_); |
| 324 ASSERT_EQ(2, callbacks_destroyed_); | 324 ASSERT_EQ(2, callbacks_destroyed_); |
| 325 ASSERT_TRUE(last_callback_template_url_.get()); | 325 ASSERT_TRUE(last_callback_template_url_.get()); |
| 326 } | 326 } |
| OLD | NEW |