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

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

Issue 1862513003: Remove NPAPI from browser and utility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build Created 4 years, 8 months 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_ANDROID = 20, 90 PROTECTED_MEDIA_IDENTIFIER_INFOBAR_DELEGATE_ANDROID = 20,
91 NACL_INFOBAR_DELEGATE = 21, 91 NACL_INFOBAR_DELEGATE = 21,
92 DATA_REDUCTION_PROXY_INFOBAR_DELEGATE_ANDROID = 22, 92 DATA_REDUCTION_PROXY_INFOBAR_DELEGATE_ANDROID = 22,
93 NOTIFICATION_PERMISSION_INFOBAR_DELEGATE = 23, 93 NOTIFICATION_PERMISSION_INFOBAR_DELEGATE = 23,
94 AUTO_SIGNIN_FIRST_RUN_INFOBAR_DELEGATE = 24, 94 AUTO_SIGNIN_FIRST_RUN_INFOBAR_DELEGATE = 24,
95 GENERATED_PASSWORD_SAVED_INFOBAR_DELEGATE_ANDROID = 25, 95 GENERATED_PASSWORD_SAVED_INFOBAR_DELEGATE_ANDROID = 25,
96 SAVE_PASSWORD_INFOBAR_DELEGATE = 26, 96 SAVE_PASSWORD_INFOBAR_DELEGATE = 26,
97 PEPPER_BROKER_INFOBAR_DELEGATE = 27, 97 PEPPER_BROKER_INFOBAR_DELEGATE = 27,
98 PERMISSION_UPDATE_INFOBAR_DELEGATE = 28, 98 PERMISSION_UPDATE_INFOBAR_DELEGATE = 28,
99 DURABLE_STORAGE_PERMISSION_INFOBAR_DELEGATE_ANDROID = 29, 99 DURABLE_STORAGE_PERMISSION_INFOBAR_DELEGATE_ANDROID = 29,
100 NPAPI_REMOVAL_INFOBAR_DELEGATE = 30,
Peter Kasting 2016/04/05 06:40:07 Nit: Rather than remove this line, which might loo
piman 2016/04/05 08:15:30 Done.
101 OUTDATED_PLUGIN_INFOBAR_DELEGATE = 31, 100 OUTDATED_PLUGIN_INFOBAR_DELEGATE = 31,
102 PLUGIN_METRO_MODE_INFOBAR_DELEGATE = 32, 101 PLUGIN_METRO_MODE_INFOBAR_DELEGATE = 32,
103 RELOAD_PLUGIN_INFOBAR_DELEGATE = 33, 102 RELOAD_PLUGIN_INFOBAR_DELEGATE = 33,
104 PLUGIN_OBSERVER = 34, 103 PLUGIN_OBSERVER = 34,
105 SSL_ADD_CERTIFICATE = 35, 104 SSL_ADD_CERTIFICATE = 35,
106 SSL_ADD_CERTIFICATE_INFOBAR_DELEGATE = 36, 105 SSL_ADD_CERTIFICATE_INFOBAR_DELEGATE = 36,
107 POPUP_BLOCKED_INFOBAR_DELEGATE = 37, 106 POPUP_BLOCKED_INFOBAR_DELEGATE = 37,
108 CHROME_SELECT_FILE_POLICY = 38, 107 CHROME_SELECT_FILE_POLICY = 38,
109 KEYSTONE_PROMOTION_INFOBAR_DELEGATE = 39, 108 KEYSTONE_PROMOTION_INFOBAR_DELEGATE = 39,
110 COLLECTED_COOKIES_INFOBAR_DELEGATE = 40, 109 COLLECTED_COOKIES_INFOBAR_DELEGATE = 40,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 231
233 // The ID of the active navigation entry at the time we became owned. 232 // The ID of the active navigation entry at the time we became owned.
234 int nav_entry_id_; 233 int nav_entry_id_;
235 234
236 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate); 235 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate);
237 }; 236 };
238 237
239 } // namespace infobars 238 } // namespace infobars
240 239
241 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ 240 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698