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

Unified Diff: remoting/test/scroll_frame_generator.h

Issue 2182833002: Add scroll perf test for protocol in chromoting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . 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
« no previous file with comments | « remoting/test/protocol_perftest.cc ('k') | remoting/test/scroll_frame_generator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/scroll_frame_generator.h
diff --git a/remoting/test/scroll_frame_generator.h b/remoting/test/scroll_frame_generator.h
new file mode 100644
index 0000000000000000000000000000000000000000..3ec2de22420424dcff8debaec03ad802413090ea
--- /dev/null
+++ b/remoting/test/scroll_frame_generator.h
@@ -0,0 +1,46 @@
+// 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 REMOTING_TEST_SCROLL_FRAME_GENERATOR_H_
+#define REMOTING_TEST_SCROLL_FRAME_GENERATOR_H_
+
+#include <map>
+#include <memory>
+
+#include "base/memory/ref_counted.h"
+#include "base/time/time.h"
+#include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h"
+
+namespace remoting {
+namespace test {
+
+class ScrollFrameGenerator
+ : public base::RefCountedThreadSafe<ScrollFrameGenerator> {
+ public:
+ ScrollFrameGenerator();
+
+ std::unique_ptr<webrtc::DesktopFrame> GenerateFrame(
+ webrtc::SharedMemoryFactory* shared_memory_factory);
+
+ base::TimeDelta GetFrameLatency(const webrtc::DesktopFrame& frame);
+
+ private:
+ ~ScrollFrameGenerator();
+ friend class base::RefCountedThreadSafe<ScrollFrameGenerator>;
+
+ std::unique_ptr<webrtc::DesktopFrame> base_frame_;
+ base::TimeTicks start_time_;
+
+ std::map<int, base::TimeTicks> frame_timestamp_;
Irfan 2016/07/26 16:45:58 unordered_map since we do not need traversal ?
Sergey Ulanov 2016/07/26 21:47:18 Done.
+
+ // Id of the last frame encoded on the barcode.
+ int last_frame_id_ = -1;
+
+ DISALLOW_COPY_AND_ASSIGN(ScrollFrameGenerator);
+};
+
+} // namespace test
+} // namespace remoting
+
+#endif // REMOTING_TEST_SCROLL_FRAME_GENERATOR_H_
« no previous file with comments | « remoting/test/protocol_perftest.cc ('k') | remoting/test/scroll_frame_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698