Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 226 CRITICAL_NOTIFICATION = 17, | 226 CRITICAL_NOTIFICATION = 17, |
| 227 IME_WARNING = 18, | 227 IME_WARNING = 18, |
| 228 TOOLBAR_ACTIONS_BAR = 19, | 228 TOOLBAR_ACTIONS_BAR = 19, |
| 229 GLOBAL_ERROR = 20, | 229 GLOBAL_ERROR = 20, |
| 230 EXTENSION_INSTALL = 21, | 230 EXTENSION_INSTALL = 21, |
| 231 EXTENSION_UNINSTALL = 22, | 231 EXTENSION_UNINSTALL = 22, |
| 232 EXTENSION_INSTALLED = 23, | 232 EXTENSION_INSTALLED = 23, |
| 233 PAYMENT_REQUEST = 24, | 233 PAYMENT_REQUEST = 24, |
| 234 SAVE_CARD = 25, | 234 SAVE_CARD = 25, |
| 235 CARD_UNMASK = 26, | 235 CARD_UNMASK = 26, |
| 236 SIGN_IN_EXISTING_DATA = 27, | |
|
msarda
2017/05/02 09:55:03
This is the regular sign-in screen, so just name t
| |
| 237 SIGN_IN_SYNC_CONFIRMATION = 28, | |
| 238 SIGN_IN_ERROR = 29, | |
| 239 SIGN_IN_EMAIL_CONFIRMATION = 30, | |
| 240 PROFILE_CHOOSER = 31, | |
| 236 MAX_VALUE | 241 MAX_VALUE |
| 237 }; | 242 }; |
| 238 | 243 |
| 239 // Record an UMA metric counting the creation of a dialog box of this type. | 244 // Record an UMA metric counting the creation of a dialog box of this type. |
| 240 void RecordDialogCreation(DialogIdentifier identifier); | 245 void RecordDialogCreation(DialogIdentifier identifier); |
| 241 | 246 |
| 242 #if defined(OS_WIN) | 247 #if defined(OS_WIN) |
| 243 | 248 |
| 244 // Shows the Chrome Cleanup dialog asking the user if they want to clean their | 249 // Shows the Chrome Cleanup dialog asking the user if they want to clean their |
| 245 // system from unwanted software. This is called when unwanted software has been | 250 // system from unwanted software. This is called when unwanted software has been |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 266 using BubbleShowPtr = | 271 using BubbleShowPtr = |
| 267 void (*)(content::WebContents*, | 272 void (*)(content::WebContents*, |
| 268 const std::vector<arc::ArcNavigationThrottle::AppInfo>&, | 273 const std::vector<arc::ArcNavigationThrottle::AppInfo>&, |
| 269 const IntentPickerResponse&); | 274 const IntentPickerResponse&); |
| 270 | 275 |
| 271 BubbleShowPtr ShowIntentPickerBubble(); | 276 BubbleShowPtr ShowIntentPickerBubble(); |
| 272 | 277 |
| 273 #endif // OS_CHROMEOS | 278 #endif // OS_CHROMEOS |
| 274 | 279 |
| 275 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ | 280 #endif // CHROME_BROWSER_UI_BROWSER_DIALOGS_H_ |
| OLD | NEW |