OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_STARTUP_AUTOMATION_INFOBAR_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_STARTUP_AUTOMATION_INFOBAR_DELEGATE_H_ |
| 7 |
| 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 10 #include "base/strings/string16.h" |
| 11 #include "components/infobars/core/confirm_infobar_delegate.h" |
| 12 #include "ui/gfx/vector_icons_public.h" |
| 13 #include "url/gurl.h" |
| 14 |
| 15 // An infobar to inform users if their browser is being controlled by an |
| 16 // automated test. |
| 17 class AutomationInfoBarDelegate : public ConfirmInfoBarDelegate { |
| 18 public: |
| 19 static void Create(); |
| 20 |
| 21 private: |
| 22 AutomationInfoBarDelegate(); |
| 23 ~AutomationInfoBarDelegate() override; |
| 24 |
| 25 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; |
| 26 bool ShouldExpire(const NavigationDetails& details) const override; |
| 27 base::string16 GetMessageText() const override; |
| 28 int GetButtons() const override; |
| 29 |
| 30 DISALLOW_COPY_AND_ASSIGN(AutomationInfoBarDelegate); |
| 31 }; |
| 32 |
| 33 #endif // CHROME_BROWSER_UI_STARTUP_AUTOMATION_INFOBAR_DELEGATE_H_ |
OLD | NEW |