blob: 9b14c36359be5e22c3239fded8e5dc2fa4833267 [file] [log] [blame]
// Copyright 2017 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.
#ifndef CONTENT_PUBLIC_TEST_TEST_RUNNER_SUPPORT_H_
#define CONTENT_PUBLIC_TEST_TEST_RUNNER_SUPPORT_H_
#include <string>
namespace blink {
class WebLocalFrame;
}
namespace content {
// Returns a frame name that can be used in the output of web tests
// (the name is derived from the frame's unique name).
std::string GetFrameNameForWebTests(blink::WebLocalFrame* frame);
} // namespace content
#endif // CONTENT_PUBLIC_TEST_TEST_RUNNER_SUPPORT_H_