Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (c) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (c) 2009, 2012 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 15 matching lines...) Expand all Loading... | |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "V8SQLStatementErrorCallback.h" | 32 #include "V8SQLStatementErrorCallback.h" |
| 33 | 33 |
| 34 #include "V8SQLError.h" | 34 #include "V8SQLError.h" |
| 35 #include "V8SQLTransaction.h" | 35 #include "V8SQLTransaction.h" |
| 36 #include "bindings/v8/V8Callback.h" | 36 #include "bindings/v8/ScriptController.h" |
| 37 #include "core/dom/ExecutionContext.h" | 37 #include "core/dom/ExecutionContext.h" |
| 38 #include "wtf/Assertions.h" | 38 #include "wtf/Assertions.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace WebCore { |
| 41 | 41 |
| 42 bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLEr ror* error) | 42 bool V8SQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLEr ror* error) |
| 43 { | 43 { |
| 44 if (!canInvokeCallback()) | 44 if (!canInvokeCallback()) |
| 45 return true; | 45 return true; |
| 46 | 46 |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 59 if (!isScriptControllerTerminating()) | 59 if (!isScriptControllerTerminating()) |
| 60 CRASH(); | 60 CRASH(); |
| 61 return true; | 61 return true; |
| 62 } | 62 } |
| 63 | 63 |
| 64 v8::Handle<v8::Value> argv[] = { | 64 v8::Handle<v8::Value> argv[] = { |
| 65 transactionHandle, | 65 transactionHandle, |
| 66 errorHandle | 66 errorHandle |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 bool callbackReturnValue = false; | 69 v8::TryCatch exceptionCatcher; |
| 70 exceptionCatcher.SetVerbose(true); | |
| 71 | |
| 72 v8::Handle<v8::Value> result = ScriptController::callFunction(executionConte xt(), m_callback.newLocal(isolate), isolate->GetCurrentContext()->Global(), 2, a rgv, isolate); | |
|
haraken
2013/12/11 00:54:30
I'm curious why you changed invokeCallback() to ca
adamk
2013/12/11 01:05:48
This allowed me to get rid of the callbackReturnVa
| |
| 73 | |
| 74 // FIXME: This comment doesn't make much sense given what the code is actual ly doing. | |
|
haraken
2013/12/11 00:54:30
Yeah, probably we can remove the comment.
adamk
2013/12/11 01:05:48
I'm going to leave it for posterity, I think; ther
| |
| 75 // | |
| 70 // Step 6: If the error callback returns false, then move on to the next | 76 // Step 6: If the error callback returns false, then move on to the next |
| 71 // statement, if any, or onto the next overall step otherwise. Otherwise, | 77 // statement, if any, or onto the next overall step otherwise. Otherwise, |
| 72 // the error callback did not return false, or there was no error callback. | 78 // the error callback did not return false, or there was no error callback. |
| 73 // Jump to the last step in the overall steps. | 79 // Jump to the last step in the overall steps. |
| 74 return invokeCallback(m_callback.newLocal(isolate), 2, argv, callbackReturnV alue, executionContext(), isolate) || callbackReturnValue; | 80 return exceptionCatcher.HasCaught() || (!result.IsEmpty() && result->Boolean Value()); |
| 75 } | 81 } |
| 76 | 82 |
| 77 } // namespace WebCore | 83 } // namespace WebCore |
| OLD | NEW |