2012-10-26 22:42:41 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_RENDERER_PERFORMANCE_TEST_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_RENDERER_PERFORMANCE_TEST_H_
|
2012-10-26 22:42:41 +02:00
|
|
|
#pragma once
|
|
|
|
|
2015-01-31 05:41:36 +01:00
|
|
|
#include "cefclient/renderer/client_app_renderer.h"
|
2012-10-26 22:42:41 +02:00
|
|
|
|
2015-01-22 21:21:21 +01:00
|
|
|
namespace client {
|
2012-10-26 22:42:41 +02:00
|
|
|
namespace performance_test {
|
|
|
|
|
2015-02-03 00:18:16 +01:00
|
|
|
// Create the renderer delegate. Called from client_app_delegates_renderer.cc.
|
2015-01-31 05:41:36 +01:00
|
|
|
void CreateDelegates(ClientAppRenderer::DelegateSet& delegates);
|
2012-10-26 22:42:41 +02:00
|
|
|
|
|
|
|
} // namespace performance_test
|
2015-01-22 21:21:21 +01:00
|
|
|
} // namespace client
|
2012-10-26 22:42:41 +02:00
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_RENDERER_PERFORMANCE_TEST_H_
|