| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 v8::Handle<v8::Object> inspectorBackend = v8::Handle<v8::Object>::Cast(inspe
ctorBackendValue); | 116 v8::Handle<v8::Object> inspectorBackend = v8::Handle<v8::Object>::Cast(inspe
ctorBackendValue); |
| 117 v8::Handle<v8::Value> dispatchFunction = inspectorBackend->Get(v8::String::N
ew("dispatch")); | 117 v8::Handle<v8::Value> dispatchFunction = inspectorBackend->Get(v8::String::N
ew("dispatch")); |
| 118 // The frame might have navigated away from the front-end page (which is st
ill weird). | 118 // The frame might have navigated away from the front-end page (which is st
ill weird). |
| 119 if (!dispatchFunction->IsFunction()) | 119 if (!dispatchFunction->IsFunction()) |
| 120 return; | 120 return; |
| 121 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF
unction); | 121 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF
unction); |
| 122 Vector< v8::Handle<v8::Value> > args; | 122 Vector< v8::Handle<v8::Value> > args; |
| 123 args.append(ToV8String(message)); | 123 args.append(ToV8String(message)); |
| 124 v8::TryCatch tryCatch; | 124 v8::TryCatch tryCatch; |
| 125 tryCatch.SetVerbose(true); | 125 tryCatch.SetVerbose(true); |
| 126 V8Proxy::instrumentedCallFunction(frame->frame()->page(), function, inspecto
rBackend, args.size(), args.data()); | 126 V8Proxy::instrumentedCallFunction(frame->frame(), function, inspectorBackend
, args.size(), args.data()); |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace WebKit | 129 } // namespace WebKit |
| OLD | NEW |