Index: third_party/WebKit/Source/platform/testing/PaintPrinters.cpp |
diff --git a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp |
index 4b1d74035c1141a037b01356bfd7dd1b040ce47e..047f2db496c35369eb4c66b0d04cc5860da8c012 100644 |
--- a/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp |
+++ b/third_party/WebKit/Source/platform/testing/PaintPrinters.cpp |
@@ -9,21 +9,6 @@ |
#include <iomanip> // NOLINT |
#include <ostream> // NOLINT |
-namespace { |
-class StreamStateSaver : private std::ios { |
- WTF_MAKE_NONCOPYABLE(StreamStateSaver); |
- |
- public: |
- StreamStateSaver(std::ios& other) : std::ios(nullptr), m_other(other) { |
- copyfmt(other); |
- } |
- ~StreamStateSaver() { m_other.copyfmt(*this); } |
- |
- private: |
- std::ios& m_other; |
-}; |
-} // unnamed namespace |
- |
namespace blink { |
void PrintTo(const PaintChunk& chunk, std::ostream* os) { |