| Index: chrome/browser/ui/startup/chromedriver_infobar_delegate.h | 
| diff --git a/chrome/browser/ui/startup/chromedriver_infobar_delegate.h b/chrome/browser/ui/startup/chromedriver_infobar_delegate.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..c527079dc195b40d6e66254aa2df8ffa8b479a13 | 
| --- /dev/null | 
| +++ b/chrome/browser/ui/startup/chromedriver_infobar_delegate.h | 
| @@ -0,0 +1,38 @@ | 
| +// Copyright 2017 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_STARTUP_CHROMEDRIVER_INFOBAR_DELEGATE_H_ | 
| +#define CHROME_BROWSER_UI_STARTUP_CHROMEDRIVER_INFOBAR_DELEGATE_H_ | 
| + | 
| +#include "base/compiler_specific.h" | 
| +#include "base/macros.h" | 
| +#include "base/strings/string16.h" | 
| +#include "components/infobars/core/confirm_infobar_delegate.h" | 
| +#include "ui/gfx/vector_icons_public.h" | 
| +#include "url/gurl.h" | 
| + | 
| +class Browser; | 
| + | 
| +// An infobar to inform users if their browser is controlled by ChromeDriver. | 
| +class ChromeDriverInfoBarDelegate : public ConfirmInfoBarDelegate { | 
| + public: | 
| +  ~ChromeDriverInfoBarDelegate() override; | 
| +  static void CreateAndShow(Browser* browser); | 
| + | 
| + private: | 
| +  ChromeDriverInfoBarDelegate(); | 
| + | 
| +  infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; | 
| +  infobars::InfoBarDelegate::Type GetInfoBarType() const override; | 
| +  gfx::VectorIconId GetVectorIconId() const override; | 
| +  base::string16 GetMessageText() const override; | 
| +  int GetButtons() const override; | 
| +  base::string16 GetLinkText() const override; | 
| +  GURL GetLinkURL() const override; | 
| +  bool ShouldExpire(const NavigationDetails& details) const override; | 
| + | 
| +  DISALLOW_COPY_AND_ASSIGN(ChromeDriverInfoBarDelegate); | 
| +}; | 
| + | 
| +#endif  // CHROME_BROWSER_UI_STARTUP_CHROMEDRIVER_INFOBAR_DELEGATE_H_ | 
|  |