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-01-30 20:34:58 +01:00
|
|
|
// Create the scheme handler. Called from both the browser and renderer process.
|
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_
|