summaryrefslogtreecommitdiffstats
path: root/ios
diff options
context:
space:
mode:
authorsdefresne <sdefresne@chromium.org>2016-01-15 02:37:18 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-15 10:39:06 +0000
commitc59439a96152ed142dd380df03de483c405d6b6f (patch)
tree7ac6b39a7f61bbca465d99995c26df9afdd2fd49 /ios
parent278b5aa86d9acb9ef99fc6cca755658b051dcf82 (diff)
downloadchromium_src-c59439a96152ed142dd380df03de483c405d6b6f.zip
chromium_src-c59439a96152ed142dd380df03de483c405d6b6f.tar.gz
chromium_src-c59439a96152ed142dd380df03de483c405d6b6f.tar.bz2
Remove FORCE_ENABLE_WKWEBVIEW as bots pass the command-line flag.
FORCE_ENABLE_WKWEBVIEW compilation define is no longer required as all the bots pass the correct command-line flag. BUG=450311 Review URL: https://codereview.chromium.org/1595483002 Cr-Commit-Position: refs/heads/master@{#369719}
Diffstat (limited to 'ios')
-rw-r--r--ios/chrome/browser/about_flags.mm7
1 files changed, 0 insertions, 7 deletions
diff --git a/ios/chrome/browser/about_flags.mm b/ios/chrome/browser/about_flags.mm
index c1586d2..df6eb55 100644
--- a/ios/chrome/browser/about_flags.mm
+++ b/ios/chrome/browser/about_flags.mm
@@ -195,12 +195,6 @@ void AppendSwitchesFromExperimentalSettings(base::CommandLine* command_line) {
}
}
- // TODO(crbug.com/450311): Remove this compile-time flag once bots are passing
- // the compile-time flag.
-#if defined(FORCE_ENABLE_WKWEBVIEW)
- if (web::IsWKWebViewSupported())
- command_line->AppendSwitch(switches::kEnableIOSWKWebView);
-#else
// Populate command line flags from EnableWKWebView.
NSString* enableWKWebViewValue = [defaults stringForKey:@"EnableWKWebView"];
if ([enableWKWebViewValue isEqualToString:@"Enabled"]) {
@@ -208,7 +202,6 @@ void AppendSwitchesFromExperimentalSettings(base::CommandLine* command_line) {
} else if ([enableWKWebViewValue isEqualToString:@"Disabled"]) {
command_line->AppendSwitch(switches::kDisableIOSWKWebView);
}
-#endif
// Populate command line flags from TabEviction.
NSString* tabEviction = [defaults stringForKey:@"TabEviction"];