diff options
Diffstat (limited to 'content/shell/common/shell_test_configuration.cc')
-rw-r--r-- | content/shell/common/shell_test_configuration.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/content/shell/common/shell_test_configuration.cc b/content/shell/common/shell_test_configuration.cc new file mode 100644 index 0000000..43f2651 --- /dev/null +++ b/content/shell/common/shell_test_configuration.cc @@ -0,0 +1,16 @@ +// Copyright (c) 2013 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "content/shell/common/shell_test_configuration.h" + +namespace content { + +ShellTestConfiguration::ShellTestConfiguration() + : enable_pixel_dumping(true), + layout_test_timeout(30 * 1000), + allow_external_pages(false) {} + +ShellTestConfiguration::~ShellTestConfiguration() {} + +} // namespace content |