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

Unified Diff: remoting/test/rgb_value.h

Issue 1253613002: Updated latency fixture and refactored connection helper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "Changed cstdint to stdint.h to compile on mac" 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 | « remoting/test/app_remoting_latency_test_fixture.cc ('k') | remoting/test/rgb_value.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/rgb_value.h
diff --git a/remoting/test/rgb_value.h b/remoting/test/rgb_value.h
new file mode 100644
index 0000000000000000000000000000000000000000..6d1a0ad010050b54a7f053be9fb8a4b55856084b
--- /dev/null
+++ b/remoting/test/rgb_value.h
@@ -0,0 +1,28 @@
+// Copyright 2015 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_RGB_VALUE_H_
+#define REMOTING_TEST_RGB_VALUE_H_
+
+#include <stdint.h>
+
+namespace remoting {
+namespace test {
+
+// Used to store a RGB color.
+// Default constructor will initialize the value to black.
+struct RGBValue {
+ RGBValue();
+ RGBValue(uint8_t r, uint8_t g, uint8_t b);
+ ~RGBValue();
+
+ uint8_t red;
+ uint8_t green;
+ uint8_t blue;
+};
+
+} // namespace test
+} // namespace remoting
+
+#endif // REMOTING_TEST_RGB_VALUE_H_
« no previous file with comments | « remoting/test/app_remoting_latency_test_fixture.cc ('k') | remoting/test/rgb_value.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698