| Index: content/common/synthetic_delay_configuration.cc
|
| diff --git a/content/common/synthetic_delay_configuration.cc b/content/common/synthetic_delay_configuration.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..423e3b6a34ade9b0c69337b61cc4bf8435e89a39
|
| --- /dev/null
|
| +++ b/content/common/synthetic_delay_configuration.cc
|
| @@ -0,0 +1,15 @@
|
| +// Copyright 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/common/synthetic_delay_configuration.h"
|
| +#include "base/debug/trace_event_synthetic_delay.h"
|
| +
|
| +namespace content {
|
| +
|
| +SyntheticDelayConfiguration::SyntheticDelayConfiguration() :
|
| + mode(static_cast<Mode>(base::debug::TraceEventSyntheticDelay::STATIC)) {}
|
| +
|
| +SyntheticDelayConfiguration::~SyntheticDelayConfiguration() {}
|
| +
|
| +} // namespace content
|
|
|