| Index: content/test/blink_test_environment.cc
|
| diff --git a/content/test/blink_test_environment.cc b/content/test/blink_test_environment.cc
|
| index 5a15580198dfe7cab3167d2c9214e658faaaf66c..7790025e634e6a6b627181c8b08e1c0a21c226d6 100644
|
| --- a/content/test/blink_test_environment.cc
|
| +++ b/content/test/blink_test_environment.cc
|
| @@ -34,21 +34,6 @@ namespace content {
|
|
|
| namespace {
|
|
|
| -void EnableBlinkPlatformLogChannels(const std::string& channels) {
|
| - if (channels.empty())
|
| - return;
|
| - base::StringTokenizer t(channels, ", ");
|
| - while (t.GetNext())
|
| - blink::enableLogChannel(t.token().c_str());
|
| -}
|
| -
|
| -void ParseBlinkCommandLineArgumentsForUnitTests() {
|
| - const base::CommandLine& command_line =
|
| - *base::CommandLine::ForCurrentProcess();
|
| - EnableBlinkPlatformLogChannels(
|
| - command_line.GetSwitchValueASCII(switches::kBlinkPlatformLogChannels));
|
| -}
|
| -
|
| class TestEnvironment {
|
| public:
|
| #if defined(OS_ANDROID)
|
| @@ -88,8 +73,6 @@ TestEnvironment* test_environment;
|
| } // namespace
|
|
|
| void SetUpBlinkTestEnvironment() {
|
| - ParseBlinkCommandLineArgumentsForUnitTests();
|
| -
|
| blink::WebRuntimeFeatures::enableExperimentalFeatures(true);
|
| blink::WebRuntimeFeatures::enableTestOnlyFeatures(true);
|
|
|
|
|