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

Unified Diff: ios/chrome/browser/about_flags.mm

Issue 2025153002: Remove NTP Favicon flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ios/chrome/browser/chrome_switches.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/about_flags.mm
diff --git a/ios/chrome/browser/about_flags.mm b/ios/chrome/browser/about_flags.mm
index 96dbc647d1973dfc9435e50ff2e76ca010332edc..66aadb42d6f5e25c5cd3262326bb7b2ad6d35de2 100644
--- a/ios/chrome/browser/about_flags.mm
+++ b/ios/chrome/browser/about_flags.mm
@@ -109,15 +109,6 @@ void AppendSwitchesFromExperimentalSettings(base::CommandLine* command_line) {
command_line->AppendSwitch(switches::kDisableAllBookmarksView);
}
- // Populate command line flag for the NTP favicons experiment from the
- // configuration plist.
- NSString* enableNTPFavicons = [defaults stringForKey:@"EnableNTPFavicons"];
- if ([enableNTPFavicons isEqualToString:@"Enabled"]) {
- command_line->AppendSwitch(switches::kEnableNTPFavicons);
- } else if ([enableNTPFavicons isEqualToString:@"Disabled"]) {
- command_line->AppendSwitch(switches::kDisableNTPFavicons);
- }
-
// Populate command line flags from PasswordGenerationEnabled.
NSString* enablePasswordGenerationValue =
[defaults stringForKey:@"PasswordGenerationEnabled"];
« no previous file with comments | « no previous file | ios/chrome/browser/chrome_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698