OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_TEST_RGB_VALUE_H_ |
| 6 #define REMOTING_TEST_RGB_VALUE_H_ |
| 7 |
| 8 namespace remoting { |
| 9 namespace test { |
| 10 |
| 11 // Used to store a RGB color. |
| 12 // Default constructor will initialize the value to black. |
| 13 struct RGBValue { |
| 14 RGBValue(); |
| 15 RGBValue(int r, int g, int b); |
| 16 ~RGBValue(); |
| 17 |
| 18 int red; |
| 19 int green; |
| 20 int blue; |
| 21 }; |
| 22 |
| 23 } // namespace test |
| 24 } // namespace remoting |
| 25 |
| 26 #endif // REMOTING_TEST_RGB_VALUE_H_ |
OLD | NEW |