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/google/google_util.h" | 5 #include "chrome/browser/google/google_util.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 #include "base/string_number_conversions.h" | 12 #include "base/string_number_conversions.h" |
13 #include "base/string_split.h" | 13 #include "base/string_split.h" |
14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
15 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
16 #include "chrome/browser/browser_process.h" | 16 #include "chrome/browser/browser_process.h" |
17 #include "chrome/browser/google/google_url_tracker.h" | 17 #include "chrome/browser/google/google_url_tracker.h" |
18 #include "chrome/common/chrome_switches.h" | 18 #include "chrome/common/chrome_switches.h" |
19 #include "chrome/common/net/url_util.h" | 19 #include "chrome/common/net/url_util.h" |
20 #include "chrome/installer/util/google_update_settings.h" | 20 #include "chrome/installer/util/google_update_settings.h" |
21 #include "googleurl/src/gurl.h" | 21 #include "googleurl/src/gurl.h" |
22 #include "googleurl/src/url_parse.h" | 22 #include "googleurl/src/url_parse.h" |
23 #include "net/base/registry_controlled_domain.h" | 23 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
24 | 24 |
25 #if defined(OS_MACOSX) | 25 #if defined(OS_MACOSX) |
26 #include "chrome/browser/mac/keystone_glue.h" | 26 #include "chrome/browser/mac/keystone_glue.h" |
27 #endif | 27 #endif |
28 | 28 |
29 namespace { | 29 namespace { |
30 | 30 |
31 const char* brand_for_testing = NULL; | 31 const char* brand_for_testing = NULL; |
32 | 32 |
33 // True iff |str| contains a "q=" query parameter with a non-empty value. | 33 // True iff |str| contains a "q=" query parameter with a non-empty value. |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 const char* const kBrands[] = { | 283 const char* const kBrands[] = { |
284 "CHIQ", "CHSG", "HLJY", "NTMO", "OOBA", "OOBB", "OOBC", "OOBD", "OOBE", | 284 "CHIQ", "CHSG", "HLJY", "NTMO", "OOBA", "OOBB", "OOBC", "OOBD", "OOBE", |
285 "OOBF", "OOBG", "OOBH", "OOBI", "OOBJ", "IDCM", | 285 "OOBF", "OOBG", "OOBH", "OOBI", "OOBJ", "IDCM", |
286 }; | 286 }; |
287 const char* const* end = &kBrands[arraysize(kBrands)]; | 287 const char* const* end = &kBrands[arraysize(kBrands)]; |
288 const char* const* found = std::find(&kBrands[0], end, brand); | 288 const char* const* found = std::find(&kBrands[0], end, brand); |
289 return found != end; | 289 return found != end; |
290 } | 290 } |
291 | 291 |
292 } // namespace google_util | 292 } // namespace google_util |
OLD | NEW |