Index: content/shell/renderer/test_runner/test_interfaces.cc |
diff --git a/content/shell/renderer/test_runner/test_interfaces.cc b/content/shell/renderer/test_runner/test_interfaces.cc |
index 4c09446d27e791ceb1e8985b5aa3e0af3e7c6003..fda79745b2181d62633e913ac70486c6e7d06f47 100644 |
--- a/content/shell/renderer/test_runner/test_interfaces.cc |
+++ b/content/shell/renderer/test_runner/test_interfaces.cc |
@@ -6,13 +6,11 @@ |
#include <string> |
-#include "base/command_line.h" |
#include "base/json/json_writer.h" |
#include "base/json/string_escape.h" |
#include "base/logging.h" |
#include "base/strings/stringprintf.h" |
#include "base/values.h" |
-#include "content/shell/common/shell_switches.h" |
#include "content/shell/renderer/test_runner/accessibility_controller.h" |
#include "content/shell/renderer/test_runner/event_sender.h" |
#include "content/shell/renderer/test_runner/gamepad_controller.h" |
@@ -33,10 +31,6 @@ TestInterfaces::TestInterfaces() |
test_runner_(new TestRunner(this)), |
delegate_(0) { |
blink::setLayoutTestMode(true); |
- if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
- switches::kEnableFontAntialiasing)) |
- blink::setFontAntialiasingEnabledForTest(true); |
- |
// NOTE: please don't put feature specific enable flags here, |
// instead add them to RuntimeEnabledFeatures.in |