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

Unified Diff: components/tracing/test/fake_scattered_buffer.h

Issue 2138903002: tracing v2: refactor fake_scattered_buffer class for tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: petr review Created 4 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
Index: components/tracing/test/fake_scattered_buffer.h
diff --git a/components/tracing/test/fake_scattered_buffer.h b/components/tracing/test/fake_scattered_buffer.h
new file mode 100644
index 0000000000000000000000000000000000000000..5089765d2f208b035d9f6ddafbeb064501bc261c
--- /dev/null
+++ b/components/tracing/test/fake_scattered_buffer.h
@@ -0,0 +1,47 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_TRACING_TEST_FAKE_SCATTERED_BUFFER_H_
+#define COMPONENTS_TRACING_TEST_FAKE_SCATTERED_BUFFER_H_
+
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/macros.h"
+#include "components/tracing/core/scattered_stream_writer.h"
+#include "components/tracing/tracing_export.h"
+
+namespace tracing {
+namespace v2 {
+
+// A simple ScatteredStreamWriter::Delegate implementation which just allocates
+// chunks of a fixed size.
+class FakeScatteredBuffer : public ScatteredStreamWriter::Delegate {
+ public:
+ explicit FakeScatteredBuffer(size_t chunk_size);
+ ~FakeScatteredBuffer();
+
+ // ScatteredStreamWriter::Delegate implementation.
+ ContiguousMemoryRange GetNewBuffer() override;
+
+ std::string GetChunkAsString(int chunk_index);
+
+ std::string GetBytesAsString(size_t start, size_t length);
+
+ const std::vector<std::unique_ptr<uint8_t[]>>& chunks() const {
+ return chunks_;
+ }
+
+ private:
+ const size_t chunk_size_;
+ std::vector<std::unique_ptr<uint8_t[]>> chunks_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeScatteredBuffer);
+};
+
+} // namespace v2
+} // namespace tracing
+
+#endif // COMPONENTS_TRACING_TEST_FAKE_SCATTERED_BUFFER_H_
« no previous file with comments | « components/tracing/core/scattered_stream_writer_unittest.cc ('k') | components/tracing/test/fake_scattered_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698