| Index: chrome/browser/content_settings/content_settings_pref_provider.cc
|
| diff --git a/chrome/browser/content_settings/content_settings_pref_provider.cc b/chrome/browser/content_settings/content_settings_pref_provider.cc
|
| index 0046dd303dc54597e1d1921869334d115c873ca0..66f058c9f38704db687636741042073bfa6e9dfc 100644
|
| --- a/chrome/browser/content_settings/content_settings_pref_provider.cc
|
| +++ b/chrome/browser/content_settings/content_settings_pref_provider.cc
|
| @@ -14,6 +14,7 @@
|
| #include "base/metrics/histogram.h"
|
| #include "base/prefs/pref_service.h"
|
| #include "base/prefs/scoped_user_pref_update.h"
|
| +#include "base/strings/string_split.h"
|
| #include "base/time/clock.h"
|
| #include "base/time/default_clock.h"
|
| #include "chrome/browser/content_settings/content_settings_rule.h"
|
| @@ -509,7 +510,7 @@ void PrefProvider::CanonicalizeContentSettingsExceptions(
|
| DCHECK(all_settings_dictionary);
|
|
|
| std::vector<std::string> remove_items;
|
| - std::vector<std::pair<std::string, std::string> > move_items;
|
| + base::StringPairs move_items;
|
| for (base::DictionaryValue::Iterator i(*all_settings_dictionary);
|
| !i.IsAtEnd();
|
| i.Advance()) {
|
|
|