Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1020)

Unified Diff: third_party/WebKit/Source/platform/testing/PaintPrinters.cpp

Issue 2872133004: blink style: Update one class cluster, delete one class, change comment style. (Closed)
Patch Set: fun Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
« no previous file with comments | « third_party/WebKit/Source/platform/heap/WrapperVisitor.h ('k') | third_party/WebKit/Source/platform/text/LineEnding.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698