2012-10-16 21:28:07 +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_BROWSER_DIALOG_TEST_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_BROWSER_DIALOG_TEST_H_
|
2012-10-16 21:28:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/cefclient/browser/test_runner.h"
|
2012-10-16 21:28:07 +02:00
|
|
|
|
2015-01-22 21:21:21 +01:00
|
|
|
namespace client {
|
2012-10-16 21:28:07 +02:00
|
|
|
namespace dialog_test {
|
|
|
|
|
2015-02-03 00:18:16 +01:00
|
|
|
// Create message handlers. Called from test_runner.cc.
|
2015-01-22 21:21:21 +01:00
|
|
|
void CreateMessageHandlers(test_runner::MessageHandlerSet& handlers);
|
2012-10-16 21:28:07 +02:00
|
|
|
|
|
|
|
} // namespace dialog_test
|
2015-01-22 21:21:21 +01:00
|
|
|
} // namespace client
|
2012-10-16 21:28:07 +02:00
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_BROWSER_DIALOG_TEST_H_
|