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

Side by Side Diff: chrome/browser/ui/startup/automation_infobar_delegate.h

Issue 2564973002: Add an infobar if a session is being controlled by an automated test. (Closed)
Patch Set: rebase Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698