| Index: chrome/browser/notifications/notification_exceptions_table_model_unittest.cc
|
| diff --git a/chrome/browser/notifications/notification_exceptions_table_model_unittest.cc b/chrome/browser/notifications/notification_exceptions_table_model_unittest.cc
|
| index 3650cbde3b87a68afb010aca08e3438c7f879353..1ca1cd46eab8e4df787aa208f3e5b66a2c218258 100644
|
| --- a/chrome/browser/notifications/notification_exceptions_table_model_unittest.cc
|
| +++ b/chrome/browser/notifications/notification_exceptions_table_model_unittest.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/notifications/desktop_notification_service_factory.h"
|
| +#include "chrome/common/content_settings.h"
|
| #include "chrome/test/base/testing_profile.h"
|
| #include "content/browser/browser_thread.h"
|
| #include "content/browser/renderer_host/test_render_view_host.h"
|
| @@ -60,7 +61,7 @@ TEST_F(NotificationExceptionsTableModelTest, CanCreate) {
|
|
|
| TEST_F(NotificationExceptionsTableModelTest, RemoveAll) {
|
| FillData();
|
| - HostContentSettingsMap::SettingsForOneType settings;
|
| + ContentSettingsForOneType settings;
|
| service_->GetNotificationsSettings(&settings);
|
| EXPECT_EQ(5u, settings.size());
|
| EXPECT_EQ(5, model_->RowCount());
|
| @@ -114,7 +115,7 @@ TEST_F(NotificationExceptionsTableModelTest, RemoveRows) {
|
| }
|
| EXPECT_EQ(3, model_->RowCount());
|
|
|
| - HostContentSettingsMap::SettingsForOneType settings;
|
| + ContentSettingsForOneType settings;
|
| service_->GetNotificationsSettings(&settings);
|
| EXPECT_EQ(3u, settings.size());
|
|
|
|
|