| Index: third_party/WebKit/Source/platform/text/LineEnding.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/LineEnding.cpp b/third_party/WebKit/Source/platform/text/LineEnding.cpp
|
| index 7dcefcb4bbd7f2583078bbbf65b685e1aa2290b4..e97557e35da910a4c71db73ababe2a930722b265 100644
|
| --- a/third_party/WebKit/Source/platform/text/LineEnding.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/LineEnding.cpp
|
| @@ -32,13 +32,18 @@
|
| #include "config.h"
|
| #include "platform/text/LineEnding.h"
|
|
|
| +#include "wtf/Allocator.h"
|
| +#include "wtf/Noncopyable.h"
|
| #include "wtf/text/CString.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace {
|
|
|
| class OutputBuffer {
|
| + STACK_ALLOCATED();
|
| + WTF_MAKE_NONCOPYABLE(OutputBuffer);
|
| public:
|
| + OutputBuffer() { }
|
| virtual char* allocate(size_t) = 0;
|
| virtual void copy(const CString&) = 0;
|
| virtual ~OutputBuffer() { }
|
|
|