// 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. | |
#include "remoting/test/rgb_value.h" | |
namespace remoting { | |
namespace test { | |
RGBValue::RGBValue() : red(0), green(0), blue(0) {} | |
RGBValue::RGBValue(uint8_t r, uint8_t g, uint8_t b) | |
: red(r), green(g), blue(b) {} | |
RGBValue::~RGBValue() = default; | |
} // namespace test | |
} // namespace remoting |