| Index: chrome/browser/ui/views/options/exception_editor_view.h
|
| diff --git a/chrome/browser/ui/views/options/exception_editor_view.h b/chrome/browser/ui/views/options/exception_editor_view.h
|
| index d88036034978167743cc5d9912e144ae6f638d44..db8ddf67a97a154371fef0aa9e5e81131ea84955 100644
|
| --- a/chrome/browser/ui/views/options/exception_editor_view.h
|
| +++ b/chrome/browser/ui/views/options/exception_editor_view.h
|
| @@ -38,7 +38,7 @@ class ExceptionEditorView : public views::View,
|
| public:
|
| // Invoked when the user accepts the edit.
|
| virtual void AcceptExceptionEdit(
|
| - const HostContentSettingsMap::Pattern& pattern,
|
| + const ContentSettingsPattern& pattern,
|
| ContentSetting setting,
|
| bool is_off_the_record,
|
| int index,
|
| @@ -55,7 +55,7 @@ class ExceptionEditorView : public views::View,
|
| ContentExceptionsTableModel* model,
|
| bool allow_off_the_record,
|
| int index,
|
| - const HostContentSettingsMap::Pattern& pattern,
|
| + const ContentSettingsPattern& pattern,
|
| ContentSetting setting,
|
| bool is_off_the_record);
|
| virtual ~ExceptionEditorView() {}
|
| @@ -87,7 +87,7 @@ class ExceptionEditorView : public views::View,
|
| // Returns true if we're adding a new item.
|
| bool is_new() const { return index_ == -1; }
|
|
|
| - bool IsPatternValid(const HostContentSettingsMap::Pattern& pattern,
|
| + bool IsPatternValid(const ContentSettingsPattern& pattern,
|
| bool is_off_the_record) const;
|
|
|
| void UpdateImageView(views::ImageView* image_view, bool is_valid);
|
| @@ -99,7 +99,7 @@ class ExceptionEditorView : public views::View,
|
| // Index of the item being edited. If -1, indices this is a new entry.
|
| const bool allow_off_the_record_;
|
| const int index_;
|
| - const HostContentSettingsMap::Pattern pattern_;
|
| + const ContentSettingsPattern pattern_;
|
| const ContentSetting setting_;
|
| const bool is_off_the_record_;
|
|
|
|
|