| Index: chrome/browser/plugin_exceptions_table_model_unittest.cc
|
| diff --git a/chrome/browser/plugin_exceptions_table_model_unittest.cc b/chrome/browser/plugin_exceptions_table_model_unittest.cc
|
| index 813083c946fa906e22a12fab05a6fbf5da578b2e..61ffdad65be49f9071e21639c6a72d881b3b04d8 100644
|
| --- a/chrome/browser/plugin_exceptions_table_model_unittest.cc
|
| +++ b/chrome/browser/plugin_exceptions_table_model_unittest.cc
|
| @@ -65,8 +65,8 @@ class PluginExceptionsTableModelTest : public testing::Test {
|
|
|
| HostContentSettingsMap* map = profile_->GetHostContentSettingsMap();
|
|
|
| - HostContentSettingsMap::Pattern example_com("[*.]example.com");
|
| - HostContentSettingsMap::Pattern moose_org("[*.]moose.org");
|
| + ContentSettingsPattern example_com("[*.]example.com");
|
| + ContentSettingsPattern moose_org("[*.]moose.org");
|
| map->SetContentSetting(example_com,
|
| CONTENT_SETTINGS_TYPE_PLUGINS,
|
| "a-foo",
|
| @@ -179,7 +179,7 @@ TEST_F(PluginExceptionsTableModelTest, RemoveLastRowInGroup) {
|
|
|
| HostContentSettingsMap* map = profile_->GetHostContentSettingsMap();
|
| EXPECT_CALL(observer, OnModelChanged());
|
| - map->SetContentSetting(HostContentSettingsMap::Pattern("[*.]blurp.net"),
|
| + map->SetContentSetting(ContentSettingsPattern("[*.]blurp.net"),
|
| CONTENT_SETTINGS_TYPE_PLUGINS,
|
| "b-bar",
|
| CONTENT_SETTING_BLOCK);
|
|
|