Chromium Code Reviews| Index: chrome/browser/ui/location_bar/location_bar.h |
| diff --git a/chrome/browser/ui/location_bar/location_bar.h b/chrome/browser/ui/location_bar/location_bar.h |
| index f566d39e8f42939c83f747a570989d3e2d1998fe..484f3177ed214a5b3474f6f15ec033f5d923e28f 100644 |
| --- a/chrome/browser/ui/location_bar/location_bar.h |
| +++ b/chrome/browser/ui/location_bar/location_bar.h |
| @@ -16,6 +16,7 @@ class ExtensionAction; |
| class LocationBarTesting; |
| class OmniboxView; |
| class Profile; |
| +class ContentSettingImageModel; |
|
tapted
2017/02/03 00:35:39
nit: sort
kylix_rd
2017/02/03 18:55:03
Done.
|
| namespace content { |
| class WebContents; |
| @@ -129,6 +130,13 @@ class LocationBarTesting { |
| // Returns whether or not the bookmark star decoration is visible. |
| virtual bool GetBookmarkStarVisibility() = 0; |
| + // Returns the number of ContentSettingImageModels. |
| + virtual int ContentSettingImageModelCount() = 0; |
| + |
| + // Returns the ContentSettingImageModel at |index|. |
| + virtual ContentSettingImageModel* |
| + GetContentSettingImageModel(size_t index) = 0; |
| + |
| protected: |
| virtual ~LocationBarTesting() {} |
| }; |