| 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 "chrome/browser/search_engines/template_url_prepopulate_data.h" | 5 #include "chrome/browser/search_engines/template_url_prepopulate_data.h" |
| 6 | 6 |
| 7 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 7 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 8 #include <locale.h> | 8 #include <locale.h> |
| 9 #endif | 9 #endif |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/prefs/pref_service.h" | 12 #include "base/prefs/pref_service.h" |
| 13 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
| 14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 15 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
| 16 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
| 17 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
| 18 #include "chrome/browser/google/google_util.h" | 18 #include "chrome/browser/google/google_util.h" |
| 19 #include "chrome/browser/search_engines/search_terms_data.h" | |
| 20 #include "chrome/browser/search_engines/template_url.h" | 19 #include "chrome/browser/search_engines/template_url.h" |
| 21 #include "chrome/common/pref_names.h" | 20 #include "chrome/common/pref_names.h" |
| 22 #include "components/pref_registry/pref_registry_syncable.h" | 21 #include "components/pref_registry/pref_registry_syncable.h" |
| 23 #include "components/search_engines/prepopulated_engines.h" | 22 #include "components/search_engines/prepopulated_engines.h" |
| 24 #include "content/public/browser/browser_thread.h" | 23 #include "content/public/browser/browser_thread.h" |
| 25 #include "grit/generated_resources.h" | 24 #include "grit/generated_resources.h" |
| 26 #include "grit/theme_resources.h" | 25 #include "grit/theme_resources.h" |
| 27 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 26 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
| 28 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
| 29 #include "url/gurl.h" | 28 #include "url/gurl.h" |
| (...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1326 } | 1325 } |
| 1327 | 1326 |
| 1328 GURL GetLogoURL(const TemplateURL& template_url, LogoSize size) { | 1327 GURL GetLogoURL(const TemplateURL& template_url, LogoSize size) { |
| 1329 if (GetEngineType(template_url) != SEARCH_ENGINE_GOOGLE) | 1328 if (GetEngineType(template_url) != SEARCH_ENGINE_GOOGLE) |
| 1330 return GURL(); | 1329 return GURL(); |
| 1331 return GURL((size == LOGO_200_PERCENT) ? | 1330 return GURL((size == LOGO_200_PERCENT) ? |
| 1332 google_logos.logo_200_percent_url : google_logos.logo_100_percent_url); | 1331 google_logos.logo_200_percent_url : google_logos.logo_100_percent_url); |
| 1333 } | 1332 } |
| 1334 | 1333 |
| 1335 } // namespace TemplateURLPrepopulateData | 1334 } // namespace TemplateURLPrepopulateData |
| OLD | NEW |