• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
2 // reserved. Use of this source code is governed by a BSD-style license that can
3 // be found in the LICENSE file.
4 
5 #ifndef CEF_LIBCEF_BROWSER_NET_DEVTOOLS_SCHEME_HANDLER_H_
6 #define CEF_LIBCEF_BROWSER_NET_DEVTOOLS_SCHEME_HANDLER_H_
7 #pragma once
8 
9 class CefIOThreadState;
10 
11 namespace scheme {
12 
13 extern const char kChromeDevToolsHost[];
14 
15 // Register the chrome-devtools scheme handler.
16 void RegisterChromeDevToolsHandler(CefIOThreadState* iothread_state);
17 
18 }  // namespace scheme
19 
20 #endif  // CEF_LIBCEF_BROWSER_NET_DEVTOOLS_SCHEME_HANDLER_H_
21