#ifndef CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_SETTINGS_HELPER_H_
#define CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_SETTINGS_HELPER_H_
#include <string>
#include "base/macros.h"
namespace content {
class WebContents;
}
class GURL;
class AppBannerSettingsHelper {
public:
static bool IsAllowed(content::WebContents* web_contents,
const GURL& origin_url,
const std::string& package_name);
static void Block(content::WebContents* web_contents,
const GURL& origin_url,
const std::string& package_name);
private:
DISALLOW_COPY_AND_ASSIGN(AppBannerSettingsHelper);
};
#endif