2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2009 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_SCHEME_TEST_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_BROWSER_SCHEME_TEST_H_
|
2012-04-03 03:34:16 +02:00
|
|
|
#pragma once
|
|
|
|
|
2015-01-22 21:21:21 +01:00
|
|
|
namespace client {
|
2012-04-24 20:01:48 +02:00
|
|
|
namespace scheme_test {
|
|
|
|
|
2015-02-03 00:18:16 +01:00
|
|
|
// Create and register the custom scheme handler. See
|
|
|
|
// common/scheme_handler_common.h for registration of the custom scheme
|
|
|
|
// name/type which must occur in all processes. Called from test_runner.cc.
|
2015-01-22 21:21:21 +01:00
|
|
|
void RegisterSchemeHandlers();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-04-24 20:01:48 +02:00
|
|
|
} // namespace scheme_test
|
2015-01-22 21:21:21 +01:00
|
|
|
} // namespace client
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_BROWSER_SCHEME_TEST_H_
|