1 /* 2 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 */ 25 26 #ifndef TypeConversions_h 27 #define TypeConversions_h 28 29 #include "wtf/FastMalloc.h" 30 #include "wtf/PassRefPtr.h" 31 #include "wtf/RefCounted.h" 32 33 namespace WebCore { 34 35 class TypeConversions : public RefCounted<TypeConversions> { 36 public: create()37 static PassRefPtr<TypeConversions> create() { return adoptRef(new TypeConversions()); } 38 testLong()39 long testLong() { return m_long; } setTestLong(long value)40 void setTestLong(long value) { m_long = value; } testUnsignedLong()41 unsigned long testUnsignedLong() { return m_unsignedLong; } setTestUnsignedLong(unsigned long value)42 void setTestUnsignedLong(unsigned long value) { m_unsignedLong = value; } 43 testLongLong()44 long long testLongLong() { return m_longLong; } setTestLongLong(long long value)45 void setTestLongLong(long long value) { m_longLong = value; } testUnsignedLongLong()46 unsigned long long testUnsignedLongLong() { return m_unsignedLongLong; } setTestUnsignedLongLong(unsigned long long value)47 void setTestUnsignedLongLong(unsigned long long value) { m_unsignedLongLong = value; } 48 testByte()49 int8_t testByte() { return m_byte; } setTestByte(int8_t value)50 void setTestByte(int8_t value) { m_byte = value; } testOctet()51 uint8_t testOctet() { return m_octet; } setTestOctet(uint8_t value)52 void setTestOctet(uint8_t value) { m_octet = value; } 53 testShort()54 int16_t testShort() { return m_short; } setTestShort(int16_t value)55 void setTestShort(int16_t value) { m_short = value; } testUnsignedShort()56 uint16_t testUnsignedShort() { return m_unsignedShort; } setTestUnsignedShort(uint16_t value)57 void setTestUnsignedShort(uint16_t value) { m_unsignedShort = value; } 58 59 private: TypeConversions()60 TypeConversions() 61 { 62 } 63 64 long m_long; 65 unsigned long m_unsignedLong; 66 long long m_longLong; 67 unsigned long long m_unsignedLongLong; 68 int8_t m_byte; 69 uint8_t m_octet; 70 int16_t m_short; 71 uint16_t m_unsignedShort; 72 }; 73 74 } // namespace WebCore 75 76 #endif 77