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

Unified Diff: chrome/browser/banners/app_banner_infobar_delegate_desktop.h

Issue 2969163002: Remove AppBannerManager::event_request_id(). (Closed)
Patch Set: Refactor into method Created 3 years, 5 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/banners/app_banner_infobar_delegate_desktop.h
diff --git a/chrome/browser/banners/app_banner_infobar_delegate_desktop.h b/chrome/browser/banners/app_banner_infobar_delegate_desktop.h
index 8fa1764525ba59374c301dd66fbe0489f85aa524..640d606c73e1b2430ea4d6c8e8251dea9b490f41 100644
--- a/chrome/browser/banners/app_banner_infobar_delegate_desktop.h
+++ b/chrome/browser/banners/app_banner_infobar_delegate_desktop.h
@@ -34,15 +34,13 @@ class AppBannerInfoBarDelegateDesktop : public ConfirmInfoBarDelegate {
content::WebContents* web_contents,
base::WeakPtr<AppBannerManager> weak_manager,
extensions::BookmarkAppHelper* bookmark_app_helper,
- const content::Manifest& manifest,
- int event_request_id);
+ const content::Manifest& manifest);
private:
AppBannerInfoBarDelegateDesktop(
base::WeakPtr<AppBannerManager> weak_manager,
extensions::BookmarkAppHelper* bookmark_app_helper,
- const content::Manifest& manifest,
- int event_request_id);
+ const content::Manifest& manifest);
~AppBannerInfoBarDelegateDesktop() override;
// ConfirmInfoBarDelegate:
@@ -58,7 +56,6 @@ class AppBannerInfoBarDelegateDesktop : public ConfirmInfoBarDelegate {
base::WeakPtr<AppBannerManager> weak_manager_;
extensions::BookmarkAppHelper* bookmark_app_helper_;
content::Manifest manifest_;
- int event_request_id_;
bool has_user_interaction_;
DISALLOW_COPY_AND_ASSIGN(AppBannerInfoBarDelegateDesktop);

Powered by Google App Engine
This is Rietveld 408576698