// Copyright (c) 2006-2008 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 RGBColor_h #define RGBColor_h #include "config.h" #include "CSSPrimitiveValue.h" #include namespace WebCore { class RGBColor : public RefCounted { public: RGBColor(unsigned rgbcolor) : m_rgbcolor(rgbcolor) { } PassRefPtr red(); PassRefPtr green(); PassRefPtr blue(); private: unsigned m_rgbcolor; }; } // namespace WebCore #endif // RGBColor_h