| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010-2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2010-2011 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "bindings/v8/V8Binding.h" | 46 #include "bindings/v8/V8Binding.h" |
| 47 #include "bindings/v8/V8Utilities.h" | 47 #include "bindings/v8/V8Utilities.h" |
| 48 #include "core/dom/ExceptionCode.h" | 48 #include "core/dom/ExceptionCode.h" |
| 49 #include "core/fetch/MemoryCache.h" | 49 #include "core/fetch/MemoryCache.h" |
| 50 #include "core/inspector/InjectedScriptHost.h" | 50 #include "core/inspector/InjectedScriptHost.h" |
| 51 #include "core/inspector/InspectorController.h" | 51 #include "core/inspector/InspectorController.h" |
| 52 #include "core/page/Frame.h" | 52 #include "core/page/Frame.h" |
| 53 #include "core/page/FrameView.h" | 53 #include "core/page/FrameView.h" |
| 54 #include "core/page/Page.h" | 54 #include "core/page/Page.h" |
| 55 #include "core/page/PageGroup.h" | 55 #include "core/page/PageGroup.h" |
| 56 #include "core/platform/JSONValues.h" | |
| 57 #include "core/platform/graphics/GraphicsContext.h" | 56 #include "core/platform/graphics/GraphicsContext.h" |
| 58 #include "core/platform/network/ResourceError.h" | 57 #include "core/platform/network/ResourceError.h" |
| 59 #include "core/platform/network/ResourceRequest.h" | 58 #include "core/platform/network/ResourceRequest.h" |
| 60 #include "core/platform/network/ResourceResponse.h" | 59 #include "core/platform/network/ResourceResponse.h" |
| 61 #include "core/rendering/RenderView.h" | 60 #include "core/rendering/RenderView.h" |
| 61 #include "platform/JSONValues.h" |
| 62 #include "public/platform/Platform.h" | 62 #include "public/platform/Platform.h" |
| 63 #include "public/platform/WebRect.h" | 63 #include "public/platform/WebRect.h" |
| 64 #include "public/platform/WebString.h" | 64 #include "public/platform/WebString.h" |
| 65 #include "public/platform/WebURL.h" | 65 #include "public/platform/WebURL.h" |
| 66 #include "public/platform/WebURLError.h" | 66 #include "public/platform/WebURLError.h" |
| 67 #include "public/platform/WebURLRequest.h" | 67 #include "public/platform/WebURLRequest.h" |
| 68 #include "public/platform/WebURLResponse.h" | 68 #include "public/platform/WebURLResponse.h" |
| 69 #include "wtf/CurrentTime.h" | 69 #include "wtf/CurrentTime.h" |
| 70 #include "wtf/MathExtras.h" | 70 #include "wtf/MathExtras.h" |
| 71 #include "wtf/Noncopyable.h" | 71 #include "wtf/Noncopyable.h" |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack
endDispatcher::kProfiler_getCPUProfileCmd] | 760 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack
endDispatcher::kProfiler_getCPUProfileCmd] |
| 761 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack
endDispatcher::kHeapProfiler_getHeapSnapshotCmd]; | 761 || commandName == InspectorBackendDispatcher::commandNames[InspectorBack
endDispatcher::kHeapProfiler_getHeapSnapshotCmd]; |
| 762 } | 762 } |
| 763 | 763 |
| 764 void WebDevToolsAgent::processPendingMessages() | 764 void WebDevToolsAgent::processPendingMessages() |
| 765 { | 765 { |
| 766 PageScriptDebugServer::shared().runPendingTasks(); | 766 PageScriptDebugServer::shared().runPendingTasks(); |
| 767 } | 767 } |
| 768 | 768 |
| 769 } // namespace WebKit | 769 } // namespace WebKit |
| OLD | NEW |