| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 ScriptValue(v8::Handle<v8::Value> value) | 63 ScriptValue(v8::Handle<v8::Value> value) |
| 64 : m_value(value.IsEmpty() ? 0 : SharedPersistent<v8::Value>::create(valu
e)) | 64 : m_value(value.IsEmpty() ? 0 : SharedPersistent<v8::Value>::create(valu
e)) |
| 65 { | 65 { |
| 66 } | 66 } |
| 67 | 67 |
| 68 ScriptValue(const ScriptValue& value) | 68 ScriptValue(const ScriptValue& value) |
| 69 : m_value(value.m_value) | 69 : m_value(value.m_value) |
| 70 { | 70 { |
| 71 } | 71 } |
| 72 | 72 |
| 73 static ScriptValue createNull() { return ScriptValue(v8::Null()); } | |
| 74 | |
| 75 ScriptValue& operator=(const ScriptValue& value) | 73 ScriptValue& operator=(const ScriptValue& value) |
| 76 { | 74 { |
| 77 if (this != &value) | 75 if (this != &value) |
| 78 m_value = value.m_value; | 76 m_value = value.m_value; |
| 79 return *this; | 77 return *this; |
| 80 } | 78 } |
| 81 | 79 |
| 82 bool operator==(const ScriptValue& value) const | 80 bool operator==(const ScriptValue& value) const |
| 83 { | 81 { |
| 84 if (hasNoValue()) | 82 if (hasNoValue()) |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 146 |
| 149 PassRefPtr<JSONValue> toJSONValue(ScriptState*) const; | 147 PassRefPtr<JSONValue> toJSONValue(ScriptState*) const; |
| 150 | 148 |
| 151 private: | 149 private: |
| 152 RefPtr<SharedPersistent<v8::Value> > m_value; | 150 RefPtr<SharedPersistent<v8::Value> > m_value; |
| 153 }; | 151 }; |
| 154 | 152 |
| 155 } // namespace WebCore | 153 } // namespace WebCore |
| 156 | 154 |
| 157 #endif // ScriptValue_h | 155 #endif // ScriptValue_h |
| OLD | NEW |