| Index: chrome/browser/banners/app_banner_manager.h
|
| diff --git a/chrome/browser/banners/app_banner_manager.h b/chrome/browser/banners/app_banner_manager.h
|
| index fa59da5e983673e700dffeb9a531c51ebecd86ee..1f4e7f9aa8b05fe0f9f2a012fd101523326e1cfa 100644
|
| --- a/chrome/browser/banners/app_banner_manager.h
|
| +++ b/chrome/browser/banners/app_banner_manager.h
|
| @@ -68,13 +68,11 @@ class AppBannerManager : public content::WebContentsObserver,
|
| // resolved, but is required by the install event spec.
|
| void OnInstall();
|
|
|
| - // Sends a message to the renderer that the user accepted the banner. Does
|
| - // nothing if |request_id| does not match the current request.
|
| - void SendBannerAccepted(int request_id);
|
| + // Sends a message to the renderer that the user accepted the banner.
|
| + void SendBannerAccepted();
|
|
|
| - // Sends a message to the renderer that the user dismissed the banner. Does
|
| - // nothing if |request_id| does not match the current request.
|
| - void SendBannerDismissed(int request_id);
|
| + // Sends a message to the renderer that the user dismissed the banner.
|
| + void SendBannerDismissed();
|
|
|
| // Returns a WeakPtr to this object. Exposed so subclasses/infobars may
|
| // may bind callbacks without needing their own WeakPtrFactory.
|
| @@ -217,7 +215,6 @@ class AppBannerManager : public content::WebContentsObserver,
|
| // Subclass accessors for private fields which should not be changed outside
|
| // this class.
|
| InstallableManager* manager() const { return manager_; }
|
| - int event_request_id() const { return event_request_id_; }
|
| bool is_active() const { return state_ == State::ACTIVE; }
|
| bool is_active_or_pending() const {
|
| switch (state_) {
|
|
|