OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_INFO_BAR_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTO_LOGIN_INFO_BAR_DELEGATE_H_ |
6 #define CHROME_BROWSER_UI_AUTO_LOGIN_INFO_BAR_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_AUTO_LOGIN_INFO_BAR_DELEGATE_H_ |
7 | 7 |
8 #include "chrome/browser/tab_contents/confirm_infobar_delegate.h" | 8 #include "chrome/browser/api/infobars/confirm_infobar_delegate.h" |
9 #include "content/public/browser/notification_observer.h" | 9 #include "content/public/browser/notification_observer.h" |
10 #include "content/public/browser/notification_registrar.h" | 10 #include "content/public/browser/notification_registrar.h" |
11 | 11 |
12 class InfoBarTabHelper; | 12 class InfoBarTabHelper; |
13 class PrefService; | 13 class PrefService; |
14 class TokenService; | 14 class TokenService; |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 class NavigationController; | 17 class NavigationController; |
18 } // namespace content | 18 } // namespace content |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // Whether any UI controls in the infobar were pressed or not. | 75 // Whether any UI controls in the infobar were pressed or not. |
76 bool button_pressed_; | 76 bool button_pressed_; |
77 | 77 |
78 // For listening to the user signing out. | 78 // For listening to the user signing out. |
79 content::NotificationRegistrar registrar_; | 79 content::NotificationRegistrar registrar_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(AutoLoginInfoBarDelegate); | 81 DISALLOW_COPY_AND_ASSIGN(AutoLoginInfoBarDelegate); |
82 }; | 82 }; |
83 | 83 |
84 #endif // CHROME_BROWSER_UI_AUTO_LOGIN_INFO_BAR_DELEGATE_H_ | 84 #endif // CHROME_BROWSER_UI_AUTO_LOGIN_INFO_BAR_DELEGATE_H_ |
OLD | NEW |