| Index: Source/core/testing/CoreTestHelpers.h
|
| diff --git a/Source/core/testing/CoreTestHelpers.h b/Source/core/testing/CoreTestHelpers.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dd89e5ff3346d790de2b09e694f5fc00eb97d40d
|
| --- /dev/null
|
| +++ b/Source/core/testing/CoreTestHelpers.h
|
| @@ -0,0 +1,22 @@
|
| +// 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 CoreTestHelpers_h
|
| +#define CoreTestHelpers_h
|
| +
|
| +#include "core/dom/Position.h"
|
| +#include "wtf/testing/WTFTestHelpers.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class Node;
|
| +
|
| +std::ostream& operator<<(std::ostream&, const Node&);
|
| +std::ostream& operator<<(std::ostream&, const Node*);
|
| +std::ostream& operator<<(std::ostream&, Position::AnchorType);
|
| +std::ostream& operator<<(std::ostream&, const Position&);
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // CoreTestHelpers_h
|
|
|