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

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

Issue 2564973002: Add an infobar if a session is being controlled by an automated test. (Closed)
Patch Set: change wording of infobar message to match suggestion from ux team 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_CHROMEDRIVER_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_UI_STARTUP_CHROMEDRIVER_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 class Browser;
16
17 // An infobar to inform users if their browser is controlled by ChromeDriver.
18 class ChromeDriverInfoBarDelegate : public ConfirmInfoBarDelegate {
19 public:
20 ~ChromeDriverInfoBarDelegate() override;
21 static void CreateAndShow(Browser* browser);
22
23 private:
24 ChromeDriverInfoBarDelegate();
25
26 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
27 infobars::InfoBarDelegate::Type GetInfoBarType() const override;
28 gfx::VectorIconId GetVectorIconId() const override;
29 base::string16 GetMessageText() const override;
30 int GetButtons() const override;
31 base::string16 GetLinkText() const override;
32 GURL GetLinkURL() const override;
33 bool ShouldExpire(const NavigationDetails& details) const override;
34
35 DISALLOW_COPY_AND_ASSIGN(ChromeDriverInfoBarDelegate);
36 };
37
38 #endif // CHROME_BROWSER_UI_STARTUP_CHROMEDRIVER_INFOBAR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698