| Index: content/browser/devtools/protocol/security_handler.cc
|
| diff --git a/content/browser/devtools/protocol/security_handler.cc b/content/browser/devtools/protocol/security_handler.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d3b52e4a8c8fb879a8848f2e36cd6b4801c178ea
|
| --- /dev/null
|
| +++ b/content/browser/devtools/protocol/security_handler.cc
|
| @@ -0,0 +1,32 @@
|
| +// 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.
|
| +
|
| +#include "content/browser/devtools/protocol/security_handler.h"
|
| +
|
| +namespace content {
|
| +namespace devtools {
|
| +namespace security {
|
| +
|
| +typedef DevToolsProtocolClient::Response Response;
|
| +
|
| +SecurityHandler::SecurityHandler() {
|
| +}
|
| +
|
| +SecurityHandler::~SecurityHandler() {
|
| +}
|
| +
|
| +void SecurityHandler::SetClient(scoped_ptr<DevToolsProtocolClient> client) {
|
| +}
|
| +
|
| +Response SecurityHandler::Enable() {
|
| + return Response::OK();
|
| +}
|
| +
|
| +Response SecurityHandler::Disable() {
|
| + return Response::OK();
|
| +}
|
| +
|
| +} // namespace security
|
| +} // namespace devtools
|
| +} // namespace content
|
|
|