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 #include "chrome/browser/ui/startup/bad_flags_prompt.h" | 5 #include "chrome/browser/ui/startup/bad_flags_prompt.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "chrome/browser/infobars/infobar_service.h" | 10 #include "chrome/browser/infobars/infobar_service.h" |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 77 | 77 |
| 78 // These flags control Blink feature state, which is not supported and is | 78 // These flags control Blink feature state, which is not supported and is |
| 79 // intended only for use by Chromium developers. | 79 // intended only for use by Chromium developers. |
| 80 switches::kDisableBlinkFeatures, | 80 switches::kDisableBlinkFeatures, |
| 81 switches::kEnableBlinkFeatures, | 81 switches::kEnableBlinkFeatures, |
| 82 | 82 |
| 83 // This flag allows people to whitelist certain origins as secure, even | 83 // This flag allows people to whitelist certain origins as secure, even |
| 84 // if they are not. | 84 // if they are not. |
| 85 switches::kUnsafetyTreatInsecureOriginAsSecure, | 85 switches::kUnsafetyTreatInsecureOriginAsSecure, |
| 86 | 86 |
| 87 // This flag enables Web Bluetooth. Since the UI for Web Bluetooth is | |
| 88 // not yet implemented, websites could take control over paired devices | |
| 89 // without the users knowledge, so we need to show a warning for when | |
| 90 // the flag is enabled. | |
| 91 switches::kEnableWebBluetooth, | |
|
felt
2015/05/11 13:53:03
you might want to keep the extra blank line betwee
ortuno
2015/05/11 17:46:43
Done.
| |
| 87 NULL | 92 NULL |
| 88 }; | 93 }; |
| 89 | 94 |
| 90 for (const char** flag = kBadFlags; *flag; ++flag) { | 95 for (const char** flag = kBadFlags; *flag; ++flag) { |
| 91 if (base::CommandLine::ForCurrentProcess()->HasSwitch(*flag)) { | 96 if (base::CommandLine::ForCurrentProcess()->HasSwitch(*flag)) { |
| 92 SimpleAlertInfoBarDelegate::Create( | 97 SimpleAlertInfoBarDelegate::Create( |
| 93 InfoBarService::FromWebContents(web_contents), | 98 InfoBarService::FromWebContents(web_contents), |
| 94 infobars::InfoBarDelegate::kNoIconID, | 99 infobars::InfoBarDelegate::kNoIconID, |
| 95 l10n_util::GetStringFUTF16(IDS_BAD_FLAGS_WARNING_MESSAGE, | 100 l10n_util::GetStringFUTF16(IDS_BAD_FLAGS_WARNING_MESSAGE, |
| 96 base::UTF8ToUTF16( | 101 base::UTF8ToUTF16( |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 127 user_data_dir.LossyDisplayName()); | 132 user_data_dir.LossyDisplayName()); |
| 128 | 133 |
| 129 if (cleanup_resource_bundle) | 134 if (cleanup_resource_bundle) |
| 130 ResourceBundle::CleanupSharedInstance(); | 135 ResourceBundle::CleanupSharedInstance(); |
| 131 | 136 |
| 132 // More complex dialogs cannot be shown before the earliest calls here. | 137 // More complex dialogs cannot be shown before the earliest calls here. |
| 133 ShowMessageBox(NULL, title, message, chrome::MESSAGE_BOX_TYPE_WARNING); | 138 ShowMessageBox(NULL, title, message, chrome::MESSAGE_BOX_TYPE_WARNING); |
| 134 } | 139 } |
| 135 | 140 |
| 136 } // namespace chrome | 141 } // namespace chrome |
| OLD | NEW |