#ifndef CHROME_BROWSER_UI_VIEWS_BUBBLE_ANCHOR_UTIL_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_BUBBLE_ANCHOR_UTIL_VIEWS_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/bubble_anchor_util.h"
#include "ui/views/bubble/bubble_border.h"
namespace views {
class Button;
class View;
}
class Browser;
namespace bubble_anchor_util {
struct AnchorConfiguration { … };
AnchorConfiguration GetPageInfoAnchorConfiguration(Browser* browser,
Anchor = kLocationBar);
AnchorConfiguration GetPermissionPromptBubbleAnchorConfiguration(
Browser* browser);
AnchorConfiguration GetAppMenuAnchorConfiguration(Browser* browser);
}
#endif