| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/search_engines/search_provider_install_data.h" | 5 #include "chrome/browser/search_engines/search_provider_install_data.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 // Implementation of SearchTermsData that may be used on the I/O thread. | 30 // Implementation of SearchTermsData that may be used on the I/O thread. |
| 31 class IOThreadSearchTermsData : public SearchTermsData { | 31 class IOThreadSearchTermsData : public SearchTermsData { |
| 32 public: | 32 public: |
| 33 explicit IOThreadSearchTermsData(std::string google_base_url); | 33 explicit IOThreadSearchTermsData(std::string google_base_url); |
| 34 | 34 |
| 35 // Implementation of SearchTermsData. | 35 // Implementation of SearchTermsData. |
| 36 virtual std::string GoogleBaseURLValue() const; | 36 virtual std::string GoogleBaseURLValue() const; |
| 37 virtual std::string GetApplicationLocale() const; | 37 virtual std::string GetApplicationLocale() const; |
| 38 #if defined(OS_WIN) && defined(GOOGLE_CHROME_BUILD) | 38 #if defined(OS_WIN) && defined(GOOGLE_CHROME_BUILD) |
| 39 virtual string16 GetRlzParameterValue() const { | 39 virtual std::wstring GetRlzParameterValue() const { |
| 40 // This value doesn't matter for our purposes. | 40 // This value doesn't matter for our purposes. |
| 41 return string16(); | 41 return std::wstring(); |
| 42 } | 42 } |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 std::string google_base_url_; | 46 std::string google_base_url_; |
| 47 | 47 |
| 48 DISALLOW_COPY_AND_ASSIGN(IOThreadSearchTermsData); | 48 DISALLOW_COPY_AND_ASSIGN(IOThreadSearchTermsData); |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 IOThreadSearchTermsData::IOThreadSearchTermsData(std::string google_base_url) | 51 IOThreadSearchTermsData::IOThreadSearchTermsData(std::string google_base_url) |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 void SearchProviderInstallData::NotifyLoaded() { | 298 void SearchProviderInstallData::NotifyLoaded() { |
| 299 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 299 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 300 | 300 |
| 301 task_queue_.Run(); | 301 task_queue_.Run(); |
| 302 | 302 |
| 303 // Since we expect this request to be rare, clear out the information. This | 303 // Since we expect this request to be rare, clear out the information. This |
| 304 // also keeps the responses current as the search providers change. | 304 // also keeps the responses current as the search providers change. |
| 305 provider_map_.reset(); | 305 provider_map_.reset(); |
| 306 SetDefault(NULL); | 306 SetDefault(NULL); |
| 307 } | 307 } |
| OLD | NEW |