Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1309)

Unified Diff: chrome/browser/ui/location_bar/location_bar.h

Issue 2668833003: DialogBrowserTest implementation to invoke Content settings bubble dialogs. (Closed)
Patch Set: Temporarily added --disable-gpu when launching subprocess. Filled out all bubble dialog invocation … Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 ad2b220a02d83bcc8ab518459e0b3a92777a4e01..c604f81de7ae1463997c38ab5765a2894b5a886a 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;
namespace content {
class WebContents;
@@ -132,6 +133,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() {}
};

Powered by Google App Engine
This is Rietveld 408576698