| Index: remoting/base/util.h
|
| diff --git a/remoting/base/util.h b/remoting/base/util.h
|
| index 07b501b5bd5f718d0f4592c0015b7c6a6b6ac870..6049298173ae48fbb54ffadd142227c84854c83a 100644
|
| --- a/remoting/base/util.h
|
| +++ b/remoting/base/util.h
|
| @@ -82,6 +82,12 @@ void CopyRGB32Rect(const uint8* source_buffer,
|
| const SkIRect& dest_buffer_rect,
|
| const SkIRect& dest_rect);
|
|
|
| +// Replaces every occurrence of "\n" in a string by "\r\n".
|
| +std::string ReplaceLfByCrLf(const std::string& in);
|
| +
|
| +// Replaces every occurrence of "\r\n" in a string by "\n".
|
| +std::string ReplaceCrLfByLf(const std::string& in);
|
| +
|
| } // namespace remoting
|
|
|
| #endif // REMOTING_BASE_UTIL_H_
|
|
|