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

Unified Diff: experimental/tools/SkDmuxWStream.h

Issue 1233093004: experimental: remove old PDF benchmarking tools (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « experimental/tools/PageCachingDocument.cpp ('k') | experimental/tools/SkDmuxWStream.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/tools/SkDmuxWStream.h
diff --git a/experimental/tools/SkDmuxWStream.h b/experimental/tools/SkDmuxWStream.h
deleted file mode 100644
index aac8b18a888504c82afcddfbe80debaa64dc8e46..0000000000000000000000000000000000000000
--- a/experimental/tools/SkDmuxWStream.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright 2015 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-#ifndef SkDmuxWStream_DEFINED
-#define SkDmuxWStream_DEFINED
-
-#include "SkStream.h"
-#include "SkTDArray.h"
-
-/**
- * A SkWStream Demultiplexer. If initialized with
- * SkDmuxWStream dmuxWStream(NULL, 0);
- * then it becomes a /dev/null.
- */
-class SkDmuxWStream : public SkWStream {
-public:
- SkDmuxWStream(SkWStream* const streamArray[], size_t count);
- ~SkDmuxWStream();
- virtual bool write(const void* buffer, size_t size) override;
- virtual void newline() override;
- virtual void flush() override;
- virtual size_t bytesWritten() const override;
-
-private:
- SkTDArray<SkWStream*> fWStreams;
- size_t fBytesWritten;
-};
-
-#endif // SkDmuxWStream_DEFINED
« no previous file with comments | « experimental/tools/PageCachingDocument.cpp ('k') | experimental/tools/SkDmuxWStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698