2013-04-01 17:57:28 +00:00
|
|
|
// Copyright (c) 2013 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 00:55:56 +00:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_BROWSER_WINDOW_TEST_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_BROWSER_WINDOW_TEST_H_
|
2013-04-01 17:57:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-11-17 18:52:42 -05:00
|
|
|
#include "tests/cefclient/browser/test_runner.h"
|
2013-04-01 17:57:28 +00:00
|
|
|
|
2015-01-22 20:21:21 +00:00
|
|
|
namespace client {
|
2013-04-01 17:57:28 +00:00
|
|
|
namespace window_test {
|
|
|
|
|
2015-02-02 23:18:16 +00:00
|
|
|
// Create message handlers. Called from test_runner.cc.
|
2015-01-22 20:21:21 +00:00
|
|
|
void CreateMessageHandlers(test_runner::MessageHandlerSet& handlers);
|
2013-04-01 17:57:28 +00:00
|
|
|
|
|
|
|
} // namespace window_test
|
2015-01-22 20:21:21 +00:00
|
|
|
} // namespace client
|
2013-04-01 17:57:28 +00:00
|
|
|
|
2015-01-31 00:55:56 +00:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_BROWSER_WINDOW_TEST_H_
|