host_content_settings_map.cc revision 868fa2fe829687343ffae624259930155e16dbd8
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
3// found in the LICENSE file.
4
5#include "chrome/browser/content_settings/host_content_settings_map.h"
6
7#include <utility>
8
9#include "base/basictypes.h"
10#include "base/command_line.h"
11#include "base/prefs/pref_service.h"
12#include "base/stl_util.h"
13#include "base/strings/string_util.h"
14#include "base/strings/utf_string_conversions.h"
15#include "chrome/browser/content_settings/content_settings_custom_extension_provider.h"
16#include "chrome/browser/content_settings/content_settings_default_provider.h"
17#include "chrome/browser/content_settings/content_settings_details.h"
18#include "chrome/browser/content_settings/content_settings_internal_extension_provider.h"
19#include "chrome/browser/content_settings/content_settings_observable_provider.h"
20#include "chrome/browser/content_settings/content_settings_policy_provider.h"
21#include "chrome/browser/content_settings/content_settings_pref_provider.h"
22#include "chrome/browser/content_settings/content_settings_provider.h"
23#include "chrome/browser/content_settings/content_settings_rule.h"
24#include "chrome/browser/content_settings/content_settings_utils.h"
25#include "chrome/browser/extensions/extension_service.h"
26#include "chrome/common/chrome_notification_types.h"
27#include "chrome/common/chrome_switches.h"
28#include "chrome/common/content_settings_pattern.h"
29#include "chrome/common/pref_names.h"
30#include "chrome/common/url_constants.h"
31#include "components/user_prefs/pref_registry_syncable.h"
32#include "content/public/browser/browser_thread.h"
33#include "content/public/browser/notification_service.h"
34#include "content/public/browser/notification_source.h"
35#include "content/public/browser/user_metrics.h"
36#include "content/public/common/content_switches.h"
37#include "extensions/common/constants.h"
38#include "googleurl/src/gurl.h"
39#include "net/base/net_errors.h"
40#include "net/base/static_cookie_policy.h"
41
42using content::BrowserThread;
43using content::UserMetricsAction;
44
45namespace {
46
47typedef std::vector<content_settings::Rule> Rules;
48
49typedef std::pair<std::string, std::string> StringPair;
50
51const char* kProviderNames[] = {
52  "platform_app",
53  "policy",
54  "extension",
55  "preference",
56  "default"
57};
58
59content_settings::SettingSource kProviderSourceMap[] = {
60  content_settings::SETTING_SOURCE_EXTENSION,
61  content_settings::SETTING_SOURCE_POLICY,
62  content_settings::SETTING_SOURCE_EXTENSION,
63  content_settings::SETTING_SOURCE_USER,
64  content_settings::SETTING_SOURCE_USER,
65};
66COMPILE_ASSERT(arraysize(kProviderSourceMap) ==
67                   HostContentSettingsMap::NUM_PROVIDER_TYPES,
68               kProviderSourceMap_has_incorrect_size);
69
70// Returns true if the |content_type| supports a resource identifier.
71// Resource identifiers are supported (but not required) for plug-ins.
72bool SupportsResourceIdentifier(ContentSettingsType content_type) {
73  return content_type == CONTENT_SETTINGS_TYPE_PLUGINS;
74}
75
76}  // namespace
77
78HostContentSettingsMap::HostContentSettingsMap(
79    PrefService* prefs,
80    bool incognito) :
81#ifndef NDEBUG
82      used_from_thread_id_(base::PlatformThread::CurrentId()),
83#endif
84      prefs_(prefs),
85      is_off_the_record_(incognito) {
86  content_settings::ObservableProvider* policy_provider =
87      new content_settings::PolicyProvider(prefs_);
88  policy_provider->AddObserver(this);
89  content_settings_providers_[POLICY_PROVIDER] = policy_provider;
90
91  content_settings::ObservableProvider* pref_provider =
92      new content_settings::PrefProvider(prefs_, is_off_the_record_);
93  pref_provider->AddObserver(this);
94  content_settings_providers_[PREF_PROVIDER] = pref_provider;
95
96  content_settings::ObservableProvider* default_provider =
97      new content_settings::DefaultProvider(prefs_, is_off_the_record_);
98  default_provider->AddObserver(this);
99  content_settings_providers_[DEFAULT_PROVIDER] = default_provider;
100
101  if (!is_off_the_record_) {
102    // Migrate obsolete preferences.
103    MigrateObsoleteClearOnExitPref();
104  }
105}
106
107#if defined(ENABLE_EXTENSIONS)
108void HostContentSettingsMap::RegisterExtensionService(
109    ExtensionService* extension_service) {
110  DCHECK(extension_service);
111  DCHECK(!content_settings_providers_[INTERNAL_EXTENSION_PROVIDER]);
112  DCHECK(!content_settings_providers_[CUSTOM_EXTENSION_PROVIDER]);
113
114  content_settings::InternalExtensionProvider* internal_extension_provider =
115      new content_settings::InternalExtensionProvider(extension_service);
116  internal_extension_provider->AddObserver(this);
117  content_settings_providers_[INTERNAL_EXTENSION_PROVIDER] =
118      internal_extension_provider;
119
120  content_settings::ObservableProvider* custom_extension_provider =
121      new content_settings::CustomExtensionProvider(
122          extension_service->GetContentSettingsStore(),
123          is_off_the_record_);
124  custom_extension_provider->AddObserver(this);
125  content_settings_providers_[CUSTOM_EXTENSION_PROVIDER] =
126      custom_extension_provider;
127
128#ifndef NDEBUG
129  DCHECK(used_from_thread_id_ != base::kInvalidThreadId)
130      << "Used from multiple threads before initialization complete.";
131#endif
132
133  OnContentSettingChanged(ContentSettingsPattern(),
134                          ContentSettingsPattern(),
135                          CONTENT_SETTINGS_TYPE_DEFAULT,
136                          std::string());
137}
138#endif
139
140// static
141void HostContentSettingsMap::RegisterUserPrefs(
142    user_prefs::PrefRegistrySyncable* registry) {
143  registry->RegisterIntegerPref(
144      prefs::kContentSettingsWindowLastTabIndex,
145      0,
146      user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
147  registry->RegisterIntegerPref(
148      prefs::kContentSettingsDefaultWhitelistVersion,
149      0,
150      user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
151  registry->RegisterBooleanPref(
152      prefs::kContentSettingsClearOnExitMigrated,
153      false,
154      user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
155
156  // Register the prefs for the content settings providers.
157  content_settings::DefaultProvider::RegisterUserPrefs(registry);
158  content_settings::PrefProvider::RegisterUserPrefs(registry);
159  content_settings::PolicyProvider::RegisterUserPrefs(registry);
160}
161
162ContentSetting HostContentSettingsMap::GetDefaultContentSettingFromProvider(
163    ContentSettingsType content_type,
164    content_settings::ProviderInterface* provider) const {
165  scoped_ptr<content_settings::RuleIterator> rule_iterator(
166      provider->GetRuleIterator(content_type, std::string(), false));
167
168  ContentSettingsPattern wildcard = ContentSettingsPattern::Wildcard();
169  while (rule_iterator->HasNext()) {
170    content_settings::Rule rule = rule_iterator->Next();
171    if (rule.primary_pattern == wildcard &&
172        rule.secondary_pattern == wildcard) {
173      return content_settings::ValueToContentSetting(rule.value.get());
174    }
175  }
176  return CONTENT_SETTING_DEFAULT;
177}
178
179ContentSetting HostContentSettingsMap::GetDefaultContentSetting(
180    ContentSettingsType content_type,
181    std::string* provider_id) const {
182  UsedContentSettingsProviders();
183
184  // Iterate through the list of providers and return the first non-NULL value
185  // that matches |primary_url| and |secondary_url|.
186  for (ConstProviderIterator provider = content_settings_providers_.begin();
187       provider != content_settings_providers_.end();
188       ++provider) {
189    if (provider->first == PREF_PROVIDER)
190      continue;
191    ContentSetting default_setting =
192        GetDefaultContentSettingFromProvider(content_type, provider->second);
193    if (default_setting != CONTENT_SETTING_DEFAULT) {
194      if (provider_id)
195        *provider_id = kProviderNames[provider->first];
196      return default_setting;
197    }
198  }
199
200  // The method GetDefaultContentSetting always has to return an explicit
201  // value that is to be used as default. We here rely on the
202  // DefaultProvider to always provide a value.
203  NOTREACHED();
204  return CONTENT_SETTING_DEFAULT;
205}
206
207ContentSetting HostContentSettingsMap::GetContentSetting(
208    const GURL& primary_url,
209    const GURL& secondary_url,
210    ContentSettingsType content_type,
211    const std::string& resource_identifier) const {
212  DCHECK(!ContentTypeHasCompoundValue(content_type));
213  scoped_ptr<base::Value> value(GetWebsiteSetting(
214      primary_url, secondary_url, content_type, resource_identifier, NULL));
215  return content_settings::ValueToContentSetting(value.get());
216}
217
218void HostContentSettingsMap::GetSettingsForOneType(
219    ContentSettingsType content_type,
220    const std::string& resource_identifier,
221    ContentSettingsForOneType* settings) const {
222  DCHECK(SupportsResourceIdentifier(content_type) ||
223         resource_identifier.empty());
224  DCHECK(settings);
225  UsedContentSettingsProviders();
226
227  settings->clear();
228  for (ConstProviderIterator provider = content_settings_providers_.begin();
229       provider != content_settings_providers_.end();
230       ++provider) {
231    // For each provider, iterate first the incognito-specific rules, then the
232    // normal rules.
233    if (is_off_the_record_) {
234      AddSettingsForOneType(provider->second,
235                            provider->first,
236                            content_type,
237                            resource_identifier,
238                            settings,
239                            true);
240    }
241    AddSettingsForOneType(provider->second,
242                          provider->first,
243                          content_type,
244                          resource_identifier,
245                          settings,
246                          false);
247  }
248}
249
250void HostContentSettingsMap::SetDefaultContentSetting(
251    ContentSettingsType content_type,
252    ContentSetting setting) {
253  DCHECK(IsSettingAllowedForType(prefs_, setting, content_type));
254
255  base::Value* value = NULL;
256  if (setting != CONTENT_SETTING_DEFAULT)
257    value = Value::CreateIntegerValue(setting);
258  SetWebsiteSetting(
259      ContentSettingsPattern::Wildcard(),
260      ContentSettingsPattern::Wildcard(),
261      content_type,
262      std::string(),
263      value);
264}
265
266void HostContentSettingsMap::SetWebsiteSetting(
267    const ContentSettingsPattern& primary_pattern,
268    const ContentSettingsPattern& secondary_pattern,
269    ContentSettingsType content_type,
270    const std::string& resource_identifier,
271    base::Value* value) {
272  DCHECK(IsValueAllowedForType(prefs_, value, content_type));
273  DCHECK(SupportsResourceIdentifier(content_type) ||
274         resource_identifier.empty());
275  UsedContentSettingsProviders();
276
277  for (ProviderIterator provider = content_settings_providers_.begin();
278       provider != content_settings_providers_.end();
279       ++provider) {
280    if (provider->second->SetWebsiteSetting(primary_pattern,
281                                            secondary_pattern,
282                                            content_type,
283                                            resource_identifier,
284                                            value)) {
285      return;
286    }
287  }
288  NOTREACHED();
289}
290
291void HostContentSettingsMap::SetContentSetting(
292    const ContentSettingsPattern& primary_pattern,
293    const ContentSettingsPattern& secondary_pattern,
294    ContentSettingsType content_type,
295    const std::string& resource_identifier,
296    ContentSetting setting) {
297  DCHECK(!ContentTypeHasCompoundValue(content_type));
298  base::Value* value = NULL;
299  if (setting != CONTENT_SETTING_DEFAULT)
300    value = Value::CreateIntegerValue(setting);
301  SetWebsiteSetting(primary_pattern,
302                    secondary_pattern,
303                    content_type,
304                    resource_identifier,
305                    value);
306}
307
308void HostContentSettingsMap::AddExceptionForURL(
309    const GURL& primary_url,
310    const GURL& secondary_url,
311    ContentSettingsType content_type,
312    const std::string& resource_identifier,
313    ContentSetting setting) {
314  // TODO(markusheintz): Until the UI supports pattern pairs, both urls must
315  // match.
316  DCHECK(primary_url == secondary_url);
317  DCHECK(!ContentTypeHasCompoundValue(content_type));
318
319  // Make sure there is no entry that would override the pattern we are about
320  // to insert for exactly this URL.
321  SetContentSetting(ContentSettingsPattern::FromURLNoWildcard(primary_url),
322                    ContentSettingsPattern::Wildcard(),
323                    content_type,
324                    resource_identifier,
325                    CONTENT_SETTING_DEFAULT);
326
327  SetContentSetting(ContentSettingsPattern::FromURL(primary_url),
328                    ContentSettingsPattern::Wildcard(),
329                    content_type,
330                    resource_identifier,
331                    setting);
332}
333
334void HostContentSettingsMap::ClearSettingsForOneType(
335    ContentSettingsType content_type) {
336  UsedContentSettingsProviders();
337  for (ProviderIterator provider = content_settings_providers_.begin();
338       provider != content_settings_providers_.end();
339       ++provider) {
340    provider->second->ClearAllContentSettingsRules(content_type);
341  }
342}
343
344bool HostContentSettingsMap::IsValueAllowedForType(
345    PrefService* prefs, const base::Value* value, ContentSettingsType type) {
346  return ContentTypeHasCompoundValue(type) || IsSettingAllowedForType(
347      prefs, content_settings::ValueToContentSetting(value), type);
348}
349
350// static
351bool HostContentSettingsMap::IsSettingAllowedForType(
352    PrefService* prefs,
353    ContentSetting setting,
354    ContentSettingsType content_type) {
355  // We don't yet support stored content settings for mixed scripting.
356  if (content_type == CONTENT_SETTINGS_TYPE_MIXEDSCRIPT)
357    return false;
358
359  // BLOCK semantics are not implemented for fullscreen.
360  if (content_type == CONTENT_SETTINGS_TYPE_FULLSCREEN &&
361      setting == CONTENT_SETTING_BLOCK) {
362    return false;
363  }
364
365  // We don't support ALLOW for media default setting.
366  if (content_type == CONTENT_SETTINGS_TYPE_MEDIASTREAM &&
367      setting == CONTENT_SETTING_ALLOW) {
368    return false;
369  }
370
371  // DEFAULT, ALLOW and BLOCK are always allowed.
372  if (setting == CONTENT_SETTING_DEFAULT ||
373      setting == CONTENT_SETTING_ALLOW ||
374      setting == CONTENT_SETTING_BLOCK) {
375    return true;
376  }
377  switch (content_type) {
378    case CONTENT_SETTINGS_TYPE_COOKIES:
379      return setting == CONTENT_SETTING_SESSION_ONLY;
380    case CONTENT_SETTINGS_TYPE_PLUGINS:
381    case CONTENT_SETTINGS_TYPE_GEOLOCATION:
382    case CONTENT_SETTINGS_TYPE_NOTIFICATIONS:
383    case CONTENT_SETTINGS_TYPE_MOUSELOCK:
384    case CONTENT_SETTINGS_TYPE_MEDIASTREAM:
385    case CONTENT_SETTINGS_TYPE_MEDIASTREAM_MIC:
386    case CONTENT_SETTINGS_TYPE_MEDIASTREAM_CAMERA:
387    case CONTENT_SETTINGS_TYPE_PPAPI_BROKER:
388      return setting == CONTENT_SETTING_ASK;
389    default:
390      return false;
391  }
392}
393
394// static
395bool HostContentSettingsMap::ContentTypeHasCompoundValue(
396    ContentSettingsType type) {
397  // Values for content type CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE and
398  // CONTENT_SETTINGS_TYPE_MEDIASTREAM are of type dictionary/map. Compound
399  // types like dictionaries can't be mapped to the type |ContentSetting|.
400  return (type == CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE ||
401          type == CONTENT_SETTINGS_TYPE_MEDIASTREAM);
402}
403
404void HostContentSettingsMap::OnContentSettingChanged(
405    const ContentSettingsPattern& primary_pattern,
406    const ContentSettingsPattern& secondary_pattern,
407    ContentSettingsType content_type,
408    std::string resource_identifier) {
409  const ContentSettingsDetails details(primary_pattern,
410                                       secondary_pattern,
411                                       content_type,
412                                       resource_identifier);
413  content::NotificationService::current()->Notify(
414      chrome::NOTIFICATION_CONTENT_SETTINGS_CHANGED,
415      content::Source<HostContentSettingsMap>(this),
416      content::Details<const ContentSettingsDetails>(&details));
417}
418
419HostContentSettingsMap::~HostContentSettingsMap() {
420  DCHECK(!prefs_);
421  STLDeleteValues(&content_settings_providers_);
422}
423
424void HostContentSettingsMap::ShutdownOnUIThread() {
425  DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
426  DCHECK(prefs_);
427  prefs_ = NULL;
428  for (ProviderIterator it = content_settings_providers_.begin();
429       it != content_settings_providers_.end();
430       ++it) {
431    it->second->ShutdownOnUIThread();
432  }
433}
434
435void HostContentSettingsMap::MigrateObsoleteClearOnExitPref() {
436  // Don't migrate more than once.
437  if (prefs_->HasPrefPath(prefs::kContentSettingsClearOnExitMigrated) &&
438      prefs_->GetBoolean(prefs::kContentSettingsClearOnExitMigrated)) {
439    return;
440  }
441
442  if (!prefs_->GetBoolean(prefs::kClearSiteDataOnExit)) {
443    // Nothing to be done
444    prefs_->SetBoolean(prefs::kContentSettingsClearOnExitMigrated, true);
445    return;
446  }
447
448  // Change the default cookie settings:
449  //  old              new
450  //  ---------------- ----------------
451  //  ALLOW            SESSION_ONLY
452  //  SESSION_ONLY     SESSION_ONLY
453  //  BLOCK            BLOCK
454  ContentSetting default_setting = GetDefaultContentSettingFromProvider(
455      CONTENT_SETTINGS_TYPE_COOKIES,
456      content_settings_providers_[DEFAULT_PROVIDER]);
457  if (default_setting == CONTENT_SETTING_ALLOW) {
458    SetDefaultContentSetting(
459        CONTENT_SETTINGS_TYPE_COOKIES, CONTENT_SETTING_SESSION_ONLY);
460  }
461
462  // Change the exceptions using the same rules.
463  ContentSettingsForOneType exceptions;
464  AddSettingsForOneType(content_settings_providers_[PREF_PROVIDER],
465                        PREF_PROVIDER,
466                        CONTENT_SETTINGS_TYPE_COOKIES,
467                        std::string(),
468                        &exceptions,
469                        false);
470  for (ContentSettingsForOneType::iterator it = exceptions.begin();
471       it != exceptions.end(); ++it) {
472    if (it->setting != CONTENT_SETTING_ALLOW)
473      continue;
474    SetWebsiteSetting(it->primary_pattern,
475                      it->secondary_pattern,
476                      CONTENT_SETTINGS_TYPE_COOKIES,
477                      std::string(),
478                      Value::CreateIntegerValue(CONTENT_SETTING_SESSION_ONLY));
479  }
480
481  prefs_->SetBoolean(prefs::kContentSettingsClearOnExitMigrated, true);
482}
483
484void HostContentSettingsMap::AddSettingsForOneType(
485    const content_settings::ProviderInterface* provider,
486    ProviderType provider_type,
487    ContentSettingsType content_type,
488    const std::string& resource_identifier,
489    ContentSettingsForOneType* settings,
490    bool incognito) const {
491  scoped_ptr<content_settings::RuleIterator> rule_iterator(
492      provider->GetRuleIterator(content_type,
493                                resource_identifier,
494                                incognito));
495  while (rule_iterator->HasNext()) {
496    const content_settings::Rule& rule = rule_iterator->Next();
497    ContentSetting setting_value = CONTENT_SETTING_DEFAULT;
498    // TODO(bauerb): Return rules as a list of values, not content settings.
499    // Handle the case using compound values for its exceptions and arbitrary
500    // values for its default setting. Here we assume all the exceptions
501    // are granted as |CONTENT_SETTING_ALLOW|.
502    if (ContentTypeHasCompoundValue(content_type) &&
503        rule.value.get() &&
504        rule.primary_pattern != ContentSettingsPattern::Wildcard()) {
505      setting_value = CONTENT_SETTING_ALLOW;
506    } else {
507      setting_value = content_settings::ValueToContentSetting(rule.value.get());
508    }
509    settings->push_back(ContentSettingPatternSource(
510        rule.primary_pattern, rule.secondary_pattern,
511        setting_value,
512        kProviderNames[provider_type],
513        incognito));
514  }
515}
516
517void HostContentSettingsMap::UsedContentSettingsProviders() const {
518#ifndef NDEBUG
519  if (used_from_thread_id_ == base::kInvalidThreadId)
520    return;
521
522  if (base::PlatformThread::CurrentId() != used_from_thread_id_)
523    used_from_thread_id_ = base::kInvalidThreadId;
524#endif
525}
526
527bool HostContentSettingsMap::ShouldAllowAllContent(
528    const GURL& primary_url,
529    const GURL& secondary_url,
530    ContentSettingsType content_type) {
531  if (content_type == CONTENT_SETTINGS_TYPE_NOTIFICATIONS ||
532      content_type == CONTENT_SETTINGS_TYPE_GEOLOCATION) {
533    return false;
534  }
535  if (secondary_url.SchemeIs(chrome::kChromeUIScheme) &&
536      content_type == CONTENT_SETTINGS_TYPE_COOKIES &&
537      primary_url.SchemeIsSecure()) {
538    return true;
539  }
540  if (primary_url.SchemeIs(extensions::kExtensionScheme)) {
541    return content_type != CONTENT_SETTINGS_TYPE_PLUGINS &&
542        (content_type != CONTENT_SETTINGS_TYPE_COOKIES ||
543            secondary_url.SchemeIs(extensions::kExtensionScheme));
544  }
545  return primary_url.SchemeIs(chrome::kChromeDevToolsScheme) ||
546         primary_url.SchemeIs(chrome::kChromeInternalScheme) ||
547         primary_url.SchemeIs(chrome::kChromeUIScheme);
548}
549
550base::Value* HostContentSettingsMap::GetWebsiteSetting(
551    const GURL& primary_url,
552    const GURL& secondary_url,
553    ContentSettingsType content_type,
554    const std::string& resource_identifier,
555    content_settings::SettingInfo* info) const {
556  DCHECK(SupportsResourceIdentifier(content_type) ||
557         resource_identifier.empty());
558
559  // Check if the scheme of the requesting url is whitelisted.
560  if (ShouldAllowAllContent(primary_url, secondary_url, content_type)) {
561    if (info) {
562      info->source = content_settings::SETTING_SOURCE_WHITELIST;
563      info->primary_pattern = ContentSettingsPattern::Wildcard();
564      info->secondary_pattern = ContentSettingsPattern::Wildcard();
565    }
566    return Value::CreateIntegerValue(CONTENT_SETTING_ALLOW);
567  }
568
569  ContentSettingsPattern* primary_pattern = NULL;
570  ContentSettingsPattern* secondary_pattern = NULL;
571  if (info) {
572    primary_pattern = &info->primary_pattern;
573    secondary_pattern = &info->secondary_pattern;
574  }
575
576  // The list of |content_settings_providers_| is ordered according to their
577  // precedence.
578  for (ConstProviderIterator provider = content_settings_providers_.begin();
579       provider != content_settings_providers_.end();
580       ++provider) {
581    base::Value* value = content_settings::GetContentSettingValueAndPatterns(
582        provider->second, primary_url, secondary_url, content_type,
583        resource_identifier, is_off_the_record_,
584        primary_pattern, secondary_pattern);
585    if (value) {
586      if (info)
587        info->source = kProviderSourceMap[provider->first];
588      return value;
589    }
590  }
591
592  if (info) {
593    info->source = content_settings::SETTING_SOURCE_NONE;
594    info->primary_pattern = ContentSettingsPattern();
595    info->secondary_pattern = ContentSettingsPattern();
596  }
597  return NULL;
598}
599
600// static
601HostContentSettingsMap::ProviderType
602    HostContentSettingsMap::GetProviderTypeFromSource(
603        const std::string& source) {
604  for (size_t i = 0; i < arraysize(kProviderNames); ++i) {
605    if (source == kProviderNames[i])
606      return static_cast<ProviderType>(i);
607  }
608
609  NOTREACHED();
610  return DEFAULT_PROVIDER;
611}
612