summaryrefslogtreecommitdiffstats
path: root/V8Binding/v8/RGBColor.h
diff options
context:
space:
mode:
authorFeng Qian <fqian@google.com>2009-06-19 10:43:15 -0700
committerFeng Qian <fqian@google.com>2009-06-19 10:43:15 -0700
commitec2c0926162c44ad3402cf3ce9262b2c213f66ab (patch)
tree50e582d7f21c93e9ae6a2ffc5865ab29b6e5851a /V8Binding/v8/RGBColor.h
parent94218fe9c3bbd3997f69f3cee7be63016e69b758 (diff)
downloadexternal_webkit-ec2c0926162c44ad3402cf3ce9262b2c213f66ab.zip
external_webkit-ec2c0926162c44ad3402cf3ce9262b2c213f66ab.tar.gz
external_webkit-ec2c0926162c44ad3402cf3ce9262b2c213f66ab.tar.bz2
Rename Android.mk to Android.libv8.mk, v8 to bindings.
Plan to drop who v8 src in this directory as v8/
Diffstat (limited to 'V8Binding/v8/RGBColor.h')
-rw-r--r--V8Binding/v8/RGBColor.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/V8Binding/v8/RGBColor.h b/V8Binding/v8/RGBColor.h
deleted file mode 100644
index afc0500..0000000
--- a/V8Binding/v8/RGBColor.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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 <wtf/RefCounted.h>
-
-namespace WebCore {
-
-class RGBColor : public RefCounted<RGBColor> {
- public:
- RGBColor(unsigned rgbcolor) : m_rgbcolor(rgbcolor) { }
-
- PassRefPtr<CSSPrimitiveValue> red();
- PassRefPtr<CSSPrimitiveValue> green();
- PassRefPtr<CSSPrimitiveValue> blue();
-
- private:
- unsigned m_rgbcolor;
-};
-
-} // namespace WebCore
-
-#endif // RGBColor_h