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

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

Issue 2363653002: Cleanup unreachable cert adding code (Closed)
Patch Set: Created 4 years, 3 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 // Removed: NPAPI_REMOVAL_INFOBAR_DELEGATE = 30, 100 // Removed: NPAPI_REMOVAL_INFOBAR_DELEGATE = 30,
101 OUTDATED_PLUGIN_INFOBAR_DELEGATE = 31, 101 OUTDATED_PLUGIN_INFOBAR_DELEGATE = 31,
102 PLUGIN_METRO_MODE_INFOBAR_DELEGATE = 32, 102 PLUGIN_METRO_MODE_INFOBAR_DELEGATE = 32,
103 RELOAD_PLUGIN_INFOBAR_DELEGATE = 33, 103 RELOAD_PLUGIN_INFOBAR_DELEGATE = 33,
104 PLUGIN_OBSERVER = 34, 104 PLUGIN_OBSERVER = 34,
105 SSL_ADD_CERTIFICATE = 35, 105 SSL_ADD_CERTIFICATE = 35,
106 SSL_ADD_CERTIFICATE_INFOBAR_DELEGATE = 36, 106 // Removed: SSL_ADD_CERTIFICATE_INFOBAR_DELEGATE = 36,
107 POPUP_BLOCKED_INFOBAR_DELEGATE = 37, 107 POPUP_BLOCKED_INFOBAR_DELEGATE = 37,
108 CHROME_SELECT_FILE_POLICY = 38, 108 CHROME_SELECT_FILE_POLICY = 38,
109 KEYSTONE_PROMOTION_INFOBAR_DELEGATE = 39, 109 KEYSTONE_PROMOTION_INFOBAR_DELEGATE = 39,
110 COLLECTED_COOKIES_INFOBAR_DELEGATE = 40, 110 COLLECTED_COOKIES_INFOBAR_DELEGATE = 40,
111 INSTALLATION_ERROR_INFOBAR_DELEGATE = 41, 111 INSTALLATION_ERROR_INFOBAR_DELEGATE = 41,
112 ALTERNATE_NAV_INFOBAR_DELEGATE = 42, 112 ALTERNATE_NAV_INFOBAR_DELEGATE = 42,
113 BAD_FLAGS_PROMPT = 43, 113 BAD_FLAGS_PROMPT = 43,
114 DEFAULT_BROWSER_INFOBAR_DELEGATE = 44, 114 DEFAULT_BROWSER_INFOBAR_DELEGATE = 44,
115 GOOGLE_API_KEYS_INFOBAR_DELEGATE = 45, 115 GOOGLE_API_KEYS_INFOBAR_DELEGATE = 45,
116 OBSOLETE_SYSTEM_INFOBAR_DELEGATE = 46, 116 OBSOLETE_SYSTEM_INFOBAR_DELEGATE = 46,
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 236
237 // The ID of the active navigation entry at the time we became owned. 237 // The ID of the active navigation entry at the time we became owned.
238 int nav_entry_id_; 238 int nav_entry_id_;
239 239
240 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate); 240 DISALLOW_COPY_AND_ASSIGN(InfoBarDelegate);
241 }; 241 };
242 242
243 } // namespace infobars 243 } // namespace infobars
244 244
245 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_ 245 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698