| Index: chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm b/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
|
| index c60c4cffe6a9fcaaa141ed09a621e489f72cf9c1..65b901fb6fbfbc83701e446db684771b177cbfd4 100644
|
| --- a/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
|
| +++ b/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
|
| @@ -35,8 +35,8 @@ class TableModelArrayControllerTest : public CocoaTest {
|
| TestingProfile* profile = browser_helper_.profile();
|
| 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",
|
| @@ -138,7 +138,7 @@ TEST_F(TableModelArrayControllerTest, RemoveAll) {
|
| TEST_F(TableModelArrayControllerTest, AddException) {
|
| TestingProfile* profile = browser_helper_.profile();
|
| HostContentSettingsMap* map = profile->GetHostContentSettingsMap();
|
| - HostContentSettingsMap::Pattern example_com("[*.]example.com");
|
| + ContentSettingsPattern example_com("[*.]example.com");
|
| map->SetContentSetting(example_com,
|
| CONTENT_SETTINGS_TYPE_PLUGINS,
|
| "c-blurp",
|
|
|