Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 50 { | 50 { |
| 51 } | 51 } |
| 52 | 52 |
| 53 explicit ScriptPromise(ScriptValue promise) | 53 explicit ScriptPromise(ScriptValue promise) |
| 54 : m_promise(promise) | 54 : m_promise(promise) |
| 55 { | 55 { |
| 56 ASSERT(!m_promise.hasNoValue()); | 56 ASSERT(!m_promise.hasNoValue()); |
| 57 } | 57 } |
| 58 | 58 |
| 59 explicit ScriptPromise(v8::Handle<v8::Value> promise) | 59 explicit ScriptPromise(v8::Handle<v8::Value> promise) |
| 60 : m_promise(promise) | 60 : m_promise(promise, v8::Isolate::GetCurrent()) |
|
haraken
2013/09/16 16:39:53
Would it be possible to fix caller sites of Script
do-not-use
2013/09/16 20:28:05
I was planning to do this in a follow-up patch (di
do-not-use
2013/09/17 06:52:13
Added a FIXME comment for now.
| |
| 61 { | 61 { |
| 62 ASSERT(!m_promise.hasNoValue()); | 62 ASSERT(!m_promise.hasNoValue()); |
| 63 } | 63 } |
| 64 | 64 |
| 65 bool isObject() const | 65 bool isObject() const |
| 66 { | 66 { |
| 67 return m_promise.isObject(); | 67 return m_promise.isObject(); |
| 68 } | 68 } |
| 69 | 69 |
| 70 bool isNull() const | 70 bool isNull() const |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 93 } | 93 } |
| 94 | 94 |
| 95 private: | 95 private: |
| 96 ScriptValue m_promise; | 96 ScriptValue m_promise; |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 } // namespace WebCore | 99 } // namespace WebCore |
| 100 | 100 |
| 101 | 101 |
| 102 #endif // ScriptPromise_h | 102 #endif // ScriptPromise_h |
| OLD | NEW |