| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_WEBSITE_SETTINGS_PERMISSION_MENU_MODEL_H_ | |
| 6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_PERMISSION_MENU_MODEL_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "chrome/browser/ui/website_settings/website_settings_ui.h" | |
| 10 #include "components/content_settings/core/common/content_settings.h" | |
| 11 #include "components/content_settings/core/common/content_settings_types.h" | |
| 12 #include "ui/base/models/simple_menu_model.h" | |
| 13 #include "url/gurl.h" | |
| 14 | |
| 15 class HostContentSettingsMap; | |
| 16 class Profile; | |
| 17 | |
| 18 class PermissionMenuModel : public ui::SimpleMenuModel, | |
| 19 public ui::SimpleMenuModel::Delegate { | |
| 20 public: | |
| 21 typedef base::Callback<void(const WebsiteSettingsUI::PermissionInfo&)> | |
| 22 ChangeCallback; | |
| 23 | |
| 24 // Create a new menu model for permission settings. | |
| 25 PermissionMenuModel(Profile* profile, | |
| 26 const GURL& url, | |
| 27 const WebsiteSettingsUI::PermissionInfo& info, | |
| 28 const ChangeCallback& callback); | |
| 29 // Creates a special-case menu model that only has the allow and block | |
| 30 // options. It does not track a permission type. |setting| is the | |
| 31 // initial selected option. It must be either CONTENT_SETTING_ALLOW or | |
| 32 // CONTENT_SETTING_BLOCK. | |
| 33 PermissionMenuModel(Profile* profile, | |
| 34 const GURL& url, | |
| 35 ContentSetting setting, | |
| 36 const ChangeCallback& callback); | |
| 37 ~PermissionMenuModel() override; | |
| 38 | |
| 39 // Overridden from ui::SimpleMenuModel::Delegate: | |
| 40 bool IsCommandIdChecked(int command_id) const override; | |
| 41 bool IsCommandIdEnabled(int command_id) const override; | |
| 42 void ExecuteCommand(int command_id, int event_flags) override; | |
| 43 | |
| 44 private: | |
| 45 HostContentSettingsMap* host_content_settings_map_; | |
| 46 | |
| 47 // The permission info represented by the menu model. | |
| 48 WebsiteSettingsUI::PermissionInfo permission_; | |
| 49 | |
| 50 // Callback to be called when the permission's setting is changed. | |
| 51 ChangeCallback callback_; | |
| 52 | |
| 53 DISALLOW_COPY_AND_ASSIGN(PermissionMenuModel); | |
| 54 }; | |
| 55 | |
| 56 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_PERMISSION_MENU_MODEL_H_ | |
| OLD | NEW |