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

Side by Side Diff: chrome/browser/ui/startup/bad_flags_prompt.cc

Issue 1124173007: Fix typo in --unsafely-treat-insecure-origin-as-secure (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 switches::kEnableSpeechDispatcher, 75 switches::kEnableSpeechDispatcher,
76 #endif 76 #endif
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::kUnsafelyTreatInsecureOriginAsSecure,
86 86
87 NULL 87 NULL
88 }; 88 };
89 89
90 for (const char** flag = kBadFlags; *flag; ++flag) { 90 for (const char** flag = kBadFlags; *flag; ++flag) {
91 if (base::CommandLine::ForCurrentProcess()->HasSwitch(*flag)) { 91 if (base::CommandLine::ForCurrentProcess()->HasSwitch(*flag)) {
92 SimpleAlertInfoBarDelegate::Create( 92 SimpleAlertInfoBarDelegate::Create(
93 InfoBarService::FromWebContents(web_contents), 93 InfoBarService::FromWebContents(web_contents),
94 infobars::InfoBarDelegate::kNoIconID, 94 infobars::InfoBarDelegate::kNoIconID,
95 l10n_util::GetStringFUTF16(IDS_BAD_FLAGS_WARNING_MESSAGE, 95 l10n_util::GetStringFUTF16(IDS_BAD_FLAGS_WARNING_MESSAGE,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 user_data_dir.LossyDisplayName()); 127 user_data_dir.LossyDisplayName());
128 128
129 if (cleanup_resource_bundle) 129 if (cleanup_resource_bundle)
130 ResourceBundle::CleanupSharedInstance(); 130 ResourceBundle::CleanupSharedInstance();
131 131
132 // More complex dialogs cannot be shown before the earliest calls here. 132 // More complex dialogs cannot be shown before the earliest calls here.
133 ShowMessageBox(NULL, title, message, chrome::MESSAGE_BOX_TYPE_WARNING); 133 ShowMessageBox(NULL, title, message, chrome::MESSAGE_BOX_TYPE_WARNING);
134 } 134 }
135 135
136 } // namespace chrome 136 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698