| Index: net/tools/ct_mapper/my_visitor.h
|
| diff --git a/net/tools/ct_mapper/my_visitor.h b/net/tools/ct_mapper/my_visitor.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fb380b8338df5e3967495d99cee0ec5817e9c23c
|
| --- /dev/null
|
| +++ b/net/tools/ct_mapper/my_visitor.h
|
| @@ -0,0 +1,17 @@
|
| +// 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 NET_TOOLS_CT_MAPPER_MY_VISITOR_H_
|
| +#define NET_TOOLS_CT_MAPPER_MY_VISITOR_H_
|
| +
|
| +#include <memory>
|
| +#include "net/tools/ct_mapper/visitor.h"
|
| +
|
| +namespace net {
|
| +
|
| +std::unique_ptr<VisitorFactory> CreateMyVisitorFactory();
|
| +
|
| +} // namespace net
|
| +
|
| +#endif // NET_TOOLS_CT_MAPPER_MY_VISITOR_H_
|
|
|