| Index: headless/lib/browser/headless_devtools.h
|
| diff --git a/headless/lib/browser/headless_devtools.h b/headless/lib/browser/headless_devtools.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0fb3ae842e9836af02272490026d40d5c83d36d5
|
| --- /dev/null
|
| +++ b/headless/lib/browser/headless_devtools.h
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_H_
|
| +#define HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_H_
|
| +
|
| +#include "base/memory/scoped_ptr.h"
|
| +
|
| +namespace devtools_http_handler {
|
| +class DevToolsHttpHandler;
|
| +}
|
| +
|
| +namespace content {
|
| +class BrowserContext;
|
| +}
|
| +
|
| +namespace headless {
|
| +
|
| +scoped_ptr<devtools_http_handler::DevToolsHttpHandler> CreateHttpHandler(
|
| + content::BrowserContext* browser_context);
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // HEADLESS_LIB_BROWSER_HEADLESS_DEVTOOLS_H_
|
|
|