Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(770)

Side by Side Diff: components/infobars/core/infobar_delegate.h

Issue 2458453002: [sensors] Add Permission guard to the generic sensor apis.
Patch Set: Mikhail+alex comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 UPDATE_PASSWORD_INFOBAR_DELEGATE = 63, 139 UPDATE_PASSWORD_INFOBAR_DELEGATE = 63,
140 DATA_REDUCTION_PROMO_INFOBAR_DELEGATE_ANDROID = 64, 140 DATA_REDUCTION_PROMO_INFOBAR_DELEGATE_ANDROID = 64,
141 AUTOFILL_CREDIT_CARD_FILLING_INFOBAR_DELEGATE_ANDROID = 65, 141 AUTOFILL_CREDIT_CARD_FILLING_INFOBAR_DELEGATE_ANDROID = 65,
142 SUBRESOURCE_FILTER_INFOBAR_DELEGATE_ANDROID = 66, 142 SUBRESOURCE_FILTER_INFOBAR_DELEGATE_ANDROID = 66,
143 INSTANT_APPS_INFOBAR_DELEGATE_ANDROID = 67, 143 INSTANT_APPS_INFOBAR_DELEGATE_ANDROID = 67,
144 DATA_REDUCTION_PROXY_PREVIEW_INFOBAR_DELEGATE = 68, 144 DATA_REDUCTION_PROXY_PREVIEW_INFOBAR_DELEGATE = 68,
145 SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID = 69, 145 SCREEN_CAPTURE_INFOBAR_DELEGATE_ANDROID = 69,
146 GROUPED_PERMISSION_INFOBAR_DELEGATE_ANDROID = 70, 146 GROUPED_PERMISSION_INFOBAR_DELEGATE_ANDROID = 70,
147 OFFLINE_PAGE_INFOBAR_DELEGATE = 71, 147 OFFLINE_PAGE_INFOBAR_DELEGATE = 71,
148 SEARCH_GEOLOCATION_DISCLOSURE_INFOBAR_DELEGATE = 72, 148 SEARCH_GEOLOCATION_DISCLOSURE_INFOBAR_DELEGATE = 72,
149 SENSORS_PERMISSION_INFOBAR_DELEGATE_ANDROID = 73,
149 }; 150 };
150 151
151 // Describes navigation events, used to decide whether infobars should be 152 // Describes navigation events, used to decide whether infobars should be
152 // dismissed. 153 // dismissed.
153 struct NavigationDetails { 154 struct NavigationDetails {
154 // Unique identifier for the entry. 155 // Unique identifier for the entry.
155 int entry_id; 156 int entry_id;
156 // True if it is a navigation to a different page (as opposed to in-page). 157 // True if it is a navigation to a different page (as opposed to in-page).
157 bool is_navigation_to_different_page; 158 bool is_navigation_to_different_page;
158 // True if the entry replaced the existing one. 159 // True if the entry replaced the existing one.
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 249
249 // The ID of the active navigation entry at the time we became owned. 250 // The ID of the active navigation entry at the time we became owned.
250 int nav_entry_id_; 251 int nav_entry_id_;
251 252
252 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate); 253 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate);
253 }; 254 };
254 255
255 } // namespace infobars 256 } // namespace infobars
256 257
257 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ 258 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698