| 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 25 matching lines...) Expand all Loading... |
| 36 #include "sky/engine/bindings/core/v8/ScriptController.h" | 36 #include "sky/engine/bindings/core/v8/ScriptController.h" |
| 37 #include "sky/engine/bindings/core/v8/V8AbstractEventListener.h" | 37 #include "sky/engine/bindings/core/v8/V8AbstractEventListener.h" |
| 38 #include "sky/engine/bindings/core/v8/V8BindingMacros.h" | 38 #include "sky/engine/bindings/core/v8/V8BindingMacros.h" |
| 39 #include "sky/engine/bindings/core/v8/V8ObjectConstructor.h" | 39 #include "sky/engine/bindings/core/v8/V8ObjectConstructor.h" |
| 40 #include "sky/engine/bindings/core/v8/WindowProxy.h" | 40 #include "sky/engine/bindings/core/v8/WindowProxy.h" |
| 41 #include "sky/engine/core/dom/Document.h" | 41 #include "sky/engine/core/dom/Document.h" |
| 42 #include "sky/engine/core/dom/Element.h" | 42 #include "sky/engine/core/dom/Element.h" |
| 43 #include "sky/engine/core/dom/QualifiedName.h" | 43 #include "sky/engine/core/dom/QualifiedName.h" |
| 44 #include "sky/engine/core/frame/LocalFrame.h" | 44 #include "sky/engine/core/frame/LocalFrame.h" |
| 45 #include "sky/engine/core/frame/Settings.h" | 45 #include "sky/engine/core/frame/Settings.h" |
| 46 #include "sky/engine/core/inspector/BindingVisitors.h" | |
| 47 #include "sky/engine/core/inspector/InspectorTraceEvents.h" | 46 #include "sky/engine/core/inspector/InspectorTraceEvents.h" |
| 48 #include "sky/engine/core/loader/FrameLoaderClient.h" | 47 #include "sky/engine/core/loader/FrameLoaderClient.h" |
| 49 #include "sky/engine/platform/EventTracer.h" | 48 #include "sky/engine/platform/EventTracer.h" |
| 50 #include "sky/engine/platform/JSONValues.h" | 49 #include "sky/engine/platform/JSONValues.h" |
| 51 #include "sky/engine/wtf/ArrayBufferContents.h" | 50 #include "sky/engine/wtf/ArrayBufferContents.h" |
| 52 #include "sky/engine/wtf/MainThread.h" | 51 #include "sky/engine/wtf/MainThread.h" |
| 53 #include "sky/engine/wtf/MathExtras.h" | 52 #include "sky/engine/wtf/MathExtras.h" |
| 54 #include "sky/engine/wtf/StdLibExtras.h" | 53 #include "sky/engine/wtf/StdLibExtras.h" |
| 55 #include "sky/engine/wtf/Threading.h" | 54 #include "sky/engine/wtf/Threading.h" |
| 56 #include "sky/engine/wtf/text/AtomicString.h" | 55 #include "sky/engine/wtf/text/AtomicString.h" |
| (...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 855 PassRefPtr<TraceEvent::ConvertableToTraceFormat> devToolsTraceEventData(Executio
nContext* context, v8::Handle<v8::Function> function, v8::Isolate* isolate) | 854 PassRefPtr<TraceEvent::ConvertableToTraceFormat> devToolsTraceEventData(Executio
nContext* context, v8::Handle<v8::Function> function, v8::Isolate* isolate) |
| 856 { | 855 { |
| 857 int scriptId = 0; | 856 int scriptId = 0; |
| 858 String resourceName; | 857 String resourceName; |
| 859 int lineNumber = 1; | 858 int lineNumber = 1; |
| 860 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumbe
r); | 859 GetDevToolsFunctionInfo(function, isolate, scriptId, resourceName, lineNumbe
r); |
| 861 return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lin
eNumber); | 860 return InspectorFunctionCallEvent::data(context, scriptId, resourceName, lin
eNumber); |
| 862 } | 861 } |
| 863 | 862 |
| 864 } // namespace blink | 863 } // namespace blink |
| OLD | NEW |