OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_AUTO_LOGIN_PROMPTER_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_LOGIN_PROMPTER_H_ |
6 #define CHROME_BROWSER_UI_AUTO_LOGIN_PROMPTER_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_LOGIN_PROMPTER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "chrome/browser/ui/auto_login_infobar_delegate.h" | 11 #include "chrome/browser/ui/auto_login_infobar_delegate.h" |
12 #include "content/public/browser/web_contents_observer.h" | 12 #include "content/public/browser/web_contents_observer.h" |
13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 class RenderViewHost; | 16 class RenderViewHost; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // Add the infobar to the WebContents, if it's still needed. | 59 // Add the infobar to the WebContents, if it's still needed. |
60 void AddInfoBarToWebContents(); | 60 void AddInfoBarToWebContents(); |
61 | 61 |
62 const Params params_; | 62 const Params params_; |
63 const GURL url_; | 63 const GURL url_; |
64 bool infobar_shown_; | 64 bool infobar_shown_; |
65 | 65 |
66 DISALLOW_COPY_AND_ASSIGN(AutoLoginPrompter); | 66 DISALLOW_COPY_AND_ASSIGN(AutoLoginPrompter); |
67 }; | 67 }; |
68 | 68 |
69 #endif // CHROME_BROWSER_UI_AUTO_LOGIN_PROMPTER_H_ | 69 #endif // CHROME_BROWSER_UI_ANDROID_INFOBARS_AUTO_LOGIN_PROMPTER_H_ |
OLD | NEW |