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

Unified Diff: chrome/browser/ui/website_settings/website_settings_infobar_delegate.h

Issue 2744823004: Move cross-platform Page Info UI code to its own folder. (Closed)
Patch Set: Update test build file with changes not caught by mass-rename.py Created 3 years, 9 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/website_settings/website_settings_infobar_delegate.h
diff --git a/chrome/browser/ui/website_settings/website_settings_infobar_delegate.h b/chrome/browser/ui/website_settings/website_settings_infobar_delegate.h
deleted file mode 100644
index 65c6a4ce7db5083cefbdfa11c4bac855eacb435b..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/website_settings/website_settings_infobar_delegate.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_INFOBAR_DELEGATE_H_
-#define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_INFOBAR_DELEGATE_H_
-
-#include "base/macros.h"
-#include "components/infobars/core/confirm_infobar_delegate.h"
-
-class InfoBarService;
-
-// This class configures an infobar that is shown when the website settings UI
-// is closed and the settings for one or more site permissions have been
-// changed. The user is shown a message indicating that a reload of the page is
-// required for the changes to take effect, and presented a button to perform
-// the reload right from the infobar.
-class WebsiteSettingsInfoBarDelegate : public ConfirmInfoBarDelegate {
- public:
- // Creates a website settings infobar and delegate and adds the infobar to
- // |infobar_service|.
- static void Create(InfoBarService* infobar_service);
-
- private:
- WebsiteSettingsInfoBarDelegate();
- ~WebsiteSettingsInfoBarDelegate() override;
-
- // ConfirmInfoBarDelegate:
- Type GetInfoBarType() const override;
- infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
- const gfx::VectorIcon& GetVectorIcon() const override;
- base::string16 GetMessageText() const override;
- int GetButtons() const override;
- base::string16 GetButtonLabel(InfoBarButton button) const override;
- bool Accept() override;
-
- DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsInfoBarDelegate);
-};
-
-#endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_INFOBAR_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698