| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 CHROME_WINDOW_ERROR = 60, | 130 CHROME_WINDOW_ERROR = 60, |
| 131 CONFIRM_DANGEROUS_DOWNLOAD = 61, | 131 CONFIRM_DANGEROUS_DOWNLOAD = 61, |
| 132 // Removed: DESKTOP_SEARCH_REDIRECTION_INFOBAR_DELEGATE = 62, | 132 // Removed: DESKTOP_SEARCH_REDIRECTION_INFOBAR_DELEGATE = 62, |
| 133 UPDATE_PASSWORD_INFOBAR_DELEGATE = 63, | 133 UPDATE_PASSWORD_INFOBAR_DELEGATE = 63, |
| 134 DATA_REDUCTION_PROMO_INFOBAR_DELEGATE_ANDROID = 64, | 134 DATA_REDUCTION_PROMO_INFOBAR_DELEGATE_ANDROID = 64, |
| 135 AUTOFILL_CREDIT_CARD_FILLING_INFOBAR_DELEGATE_ANDROID = 65, | 135 AUTOFILL_CREDIT_CARD_FILLING_INFOBAR_DELEGATE_ANDROID = 65, |
| 136 SUBRESOURCE_FILTER_INFOBAR_DELEGATE_ANDROID = 66, | 136 SUBRESOURCE_FILTER_INFOBAR_DELEGATE_ANDROID = 66, |
| 137 INSTANT_APPS_INFOBAR_DELEGATE_ANDROID = 67, | 137 INSTANT_APPS_INFOBAR_DELEGATE_ANDROID = 67, |
| 138 DATA_REDUCTION_PROXY_PREVIEW_INFOBAR_DELEGATE = 68, | 138 DATA_REDUCTION_PROXY_PREVIEW_INFOBAR_DELEGATE = 68, |
| 139 SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID = 69, | 139 SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID = 69, |
| 140 GROUPED_PERMISSION_INFOBAR_DELEGATE_ANDROID = 70, |
| 140 }; | 141 }; |
| 141 | 142 |
| 142 // Describes navigation events, used to decide whether infobars should be | 143 // Describes navigation events, used to decide whether infobars should be |
| 143 // dismissed. | 144 // dismissed. |
| 144 struct NavigationDetails { | 145 struct NavigationDetails { |
| 145 // Unique identifier for the entry. | 146 // Unique identifier for the entry. |
| 146 int entry_id; | 147 int entry_id; |
| 147 // True if it is a navigation to a different page (as opposed to in-page). | 148 // True if it is a navigation to a different page (as opposed to in-page). |
| 148 bool is_navigation_to_different_page; | 149 bool is_navigation_to_different_page; |
| 149 // True if the entry replaced the existing one. | 150 // True if the entry replaced the existing one. |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 | 238 |
| 238 // The ID of the active navigation entry at the time we became owned. | 239 // The ID of the active navigation entry at the time we became owned. |
| 239 int nav_entry_id_; | 240 int nav_entry_id_; |
| 240 | 241 |
| 241 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate); | 242 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate); |
| 242 }; | 243 }; |
| 243 | 244 |
| 244 } // namespace infobars | 245 } // namespace infobars |
| 245 | 246 |
| 246 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ | 247 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ |
| OLD | NEW |