• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights
2 // reserved. Use of this source code is governed by a BSD-style license that
3 // can be found in the LICENSE file.
4 
5 #ifndef CEF_TESTS_CEFCLIENT_BROWSER_SCHEME_TEST_H_
6 #define CEF_TESTS_CEFCLIENT_BROWSER_SCHEME_TEST_H_
7 #pragma once
8 
9 namespace client {
10 namespace scheme_test {
11 
12 // Create and register the custom scheme handler. See
13 // common/scheme_handler_common.h for registration of the custom scheme
14 // name/type which must occur in all processes. Called from test_runner.cc.
15 void RegisterSchemeHandlers();
16 
17 }  // namespace scheme_test
18 }  // namespace client
19 
20 #endif  // CEF_TESTS_CEFCLIENT_BROWSER_SCHEME_TEST_H_
21