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 COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ | 5 #ifndef COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ |
6 #define COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ | 6 #define COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 CHROME_SELECT_FILE_POLICY = 38, | 112 CHROME_SELECT_FILE_POLICY = 38, |
113 KEYSTONE_PROMOTION_INFOBAR_DELEGATE = 39, | 113 KEYSTONE_PROMOTION_INFOBAR_DELEGATE = 39, |
114 COLLECTED_COOKIES_INFOBAR_DELEGATE = 40, | 114 COLLECTED_COOKIES_INFOBAR_DELEGATE = 40, |
115 INSTALLATION_ERROR_INFOBAR_DELEGATE = 41, | 115 INSTALLATION_ERROR_INFOBAR_DELEGATE = 41, |
116 ALTERNATE_NAV_INFOBAR_DELEGATE = 42, | 116 ALTERNATE_NAV_INFOBAR_DELEGATE = 42, |
117 BAD_FLAGS_PROMPT = 43, | 117 BAD_FLAGS_PROMPT = 43, |
118 DEFAULT_BROWSER_INFOBAR_DELEGATE = 44, | 118 DEFAULT_BROWSER_INFOBAR_DELEGATE = 44, |
119 GOOGLE_API_KEYS_INFOBAR_DELEGATE = 45, | 119 GOOGLE_API_KEYS_INFOBAR_DELEGATE = 45, |
120 OBSOLETE_SYSTEM_INFOBAR_DELEGATE = 46, | 120 OBSOLETE_SYSTEM_INFOBAR_DELEGATE = 46, |
121 SESSION_CRASHED_INFOBAR_DELEGATE = 47, | 121 SESSION_CRASHED_INFOBAR_DELEGATE = 47, |
122 WEBSITE_SETTINGS_INFOBAR_DELEGATE = 48, | 122 PAGE_INFO_INFOBAR_DELEGATE = 48, |
123 AUTOFILL_CC_INFOBAR_DELEGATE = 49, | 123 AUTOFILL_CC_INFOBAR_DELEGATE = 49, |
124 TRANSLATE_INFOBAR_DELEGATE = 50, | 124 TRANSLATE_INFOBAR_DELEGATE = 50, |
125 IOS_CHROME_SAVE_PASSWORD_INFOBAR_DELEGATE = 51, | 125 IOS_CHROME_SAVE_PASSWORD_INFOBAR_DELEGATE = 51, |
126 NATIVE_APP_INSTALLER_INFOBAR_DELEGATE = 52, | 126 NATIVE_APP_INSTALLER_INFOBAR_DELEGATE = 52, |
127 NATIVE_APP_LAUNCHER_INFOBAR_DELEGATE = 53, | 127 NATIVE_APP_LAUNCHER_INFOBAR_DELEGATE = 53, |
128 NATIVE_APP_OPEN_POLICY_INFOBAR_DELEGATE = 54, | 128 NATIVE_APP_OPEN_POLICY_INFOBAR_DELEGATE = 54, |
129 RE_SIGN_IN_INFOBAR_DELEGATE = 55, | 129 RE_SIGN_IN_INFOBAR_DELEGATE = 55, |
130 SHOW_PASSKIT_INFOBAR_ERROR_DELEGATE = 56, | 130 SHOW_PASSKIT_INFOBAR_ERROR_DELEGATE = 56, |
131 READER_MODE_INFOBAR_DELEGATE_IOS = 57, | 131 READER_MODE_INFOBAR_DELEGATE_IOS = 57, |
132 SYNC_ERROR_INFOBAR_DELEGATE = 58, | 132 SYNC_ERROR_INFOBAR_DELEGATE = 58, |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 | 248 |
249 // The ID of the active navigation entry at the time we became owned. | 249 // The ID of the active navigation entry at the time we became owned. |
250 int nav_entry_id_; | 250 int nav_entry_id_; |
251 | 251 |
252 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate); | 252 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate); |
253 }; | 253 }; |
254 | 254 |
255 } // namespace infobars | 255 } // namespace infobars |
256 | 256 |
257 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ | 257 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ |
OLD | NEW |