| Index: chrome/browser/ui/website_settings/website_settings_ui.h
|
| diff --git a/chrome/browser/ui/website_settings/website_settings_ui.h b/chrome/browser/ui/website_settings/website_settings_ui.h
|
| index e3162890a4e296808ab603cb26747becaabf34da..f3d5fbc43f468116fcbffa7b9d20c42ad2150e9f 100644
|
| --- a/chrome/browser/ui/website_settings/website_settings_ui.h
|
| +++ b/chrome/browser/ui/website_settings/website_settings_ui.h
|
| @@ -114,18 +114,32 @@ class WebsiteSettingsUI {
|
| ContentSetting default_setting,
|
| content_settings::SettingSource source);
|
|
|
| + // Returns the icon resource ID for the given permission |type| and |setting|.
|
| + static int GetPermissionIconID(ContentSettingsType type,
|
| + ContentSetting setting);
|
| +
|
| // Returns the icon for the given permission |type| and |setting|.
|
| static const gfx::Image& GetPermissionIcon(ContentSettingsType type,
|
| ContentSetting setting);
|
|
|
| + // Returns the identity icon ID for the given identity |status|.
|
| + static int GetIdentityIconID(WebsiteSettings::SiteIdentityStatus status);
|
| +
|
| // Returns the identity icon for the given identity |status|.
|
| static const gfx::Image& GetIdentityIcon(
|
| WebsiteSettings::SiteIdentityStatus status);
|
|
|
| + // Returns the connection icon ID for the given connection |status|.
|
| + static int GetConnectionIconID(
|
| + WebsiteSettings::SiteConnectionStatus status);
|
| +
|
| // Returns the connection icon for the given connection |status|.
|
| static const gfx::Image& GetConnectionIcon(
|
| WebsiteSettings::SiteConnectionStatus status);
|
|
|
| + // Returns the icon ID to show along with the first visit information.
|
| + static int GetFirstVisitIconID(const string16& first_visit);
|
| +
|
| // Returns the icon to show along with the first visit information.
|
| static const gfx::Image& GetFirstVisitIcon(const string16& first_visit);
|
|
|
|
|