| Index: chrome/browser/content_exceptions_table_model.h
|
| ===================================================================
|
| --- chrome/browser/content_exceptions_table_model.h (revision 60039)
|
| +++ chrome/browser/content_exceptions_table_model.h (working copy)
|
| @@ -9,6 +9,7 @@
|
| #include <string>
|
|
|
| #include "app/table_model.h"
|
| +#include "base/ref_counted.h"
|
| #include "chrome/common/content_settings.h"
|
| #include "chrome/common/content_settings_types.h"
|
| #include "chrome/browser/host_content_settings_map.h"
|
| @@ -63,8 +64,8 @@
|
| return is_off_the_record ? off_the_record_entries_ : entries_;
|
| }
|
|
|
| - HostContentSettingsMap* map_;
|
| - HostContentSettingsMap* off_the_record_map_;
|
| + scoped_refptr<HostContentSettingsMap> map_;
|
| + scoped_refptr<HostContentSettingsMap> off_the_record_map_;
|
| ContentSettingsType content_type_;
|
| HostContentSettingsMap::SettingsForOneType entries_;
|
| HostContentSettingsMap::SettingsForOneType off_the_record_entries_;
|
|
|