OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 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 891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 | 902 |
903 PassRefPtr<TraceEvent::ConvertableToTraceFormat> devToolsTraceEventData(Executio
nContext* context, v8::Handle<v8::Function> function, v8::Isolate* isolate) | 903 PassRefPtr<TraceEvent::ConvertableToTraceFormat> devToolsTraceEventData(Executio
nContext* context, v8::Handle<v8::Function> function, v8::Isolate* isolate) |
904 { | 904 { |
905 int scriptId = 0; | 905 int scriptId = 0; |
906 String resourceName; | 906 String resourceName; |
907 int lineNumber = 1; | 907 int lineNumber = 1; |
908 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumbe
r); | 908 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumbe
r); |
909 return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lin
eNumber); | 909 return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lin
eNumber); |
910 } | 910 } |
911 | 911 |
| 912 v8::Local<v8::Value> v8DoneIteratorResult(v8::Isolate* isolate) |
| 913 { |
| 914 v8::Local<v8::Object> result = v8::Object::New(isolate); |
| 915 result->Set(v8String(isolate, "value"), v8::Undefined(isolate)); |
| 916 result->Set(v8String(isolate, "done"), v8Boolean(true, isolate)); |
| 917 return result; |
| 918 } |
| 919 |
| 920 v8::Local<v8::Value> v8IteratorResult(v8::Isolate* isolate, v8::Handle<v8::Value
> value) |
| 921 { |
| 922 v8::Local<v8::Object> result = v8::Object::New(isolate); |
| 923 result->Set(v8String(isolate, "value"), value); |
| 924 result->Set(v8String(isolate, "done"), v8Boolean(false, isolate)); |
| 925 return result; |
| 926 } |
| 927 |
912 } // namespace blink | 928 } // namespace blink |
OLD | NEW |