Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / forms / ColorInputType.h
index a35abd2..317f0a8 100644 (file)
 #include "core/html/forms/BaseClickableWithKeyInputType.h"
 #include "platform/ColorChooserClient.h"
 
-namespace WebCore {
+namespace blink {
+
+class ColorChooser;
 
 class ColorInputType FINAL : public BaseClickableWithKeyInputType, public ColorChooserClient {
 public:
-    static PassRefPtr<InputType> create(HTMLInputElement&);
+    static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
     virtual ~ColorInputType();
 
     // ColorChooserClient implementation.
@@ -72,6 +74,6 @@ private:
     OwnPtr<ColorChooser> m_chooser;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // ColorInputType_h