13 lines
469 B
C
13 lines
469 B
C
|
// 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.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
// 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.
|
||
|
namespace scheme_test {
|
||
|
void RegisterSchemeHandlers();
|
||
|
}
|