| 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 28 matching lines...) Expand all Loading... |
| 39 #include "WebDevToolsAgentClient.h" | 39 #include "WebDevToolsAgentClient.h" |
| 40 #include "WebFrameImpl.h" | 40 #include "WebFrameImpl.h" |
| 41 #include "WebInputEventConversion.h" | 41 #include "WebInputEventConversion.h" |
| 42 #include "WebMemoryUsageInfo.h" | 42 #include "WebMemoryUsageInfo.h" |
| 43 #include "WebSettings.h" | 43 #include "WebSettings.h" |
| 44 #include "WebViewClient.h" | 44 #include "WebViewClient.h" |
| 45 #include "WebViewImpl.h" | 45 #include "WebViewImpl.h" |
| 46 #include "bindings/v8/PageScriptDebugServer.h" | 46 #include "bindings/v8/PageScriptDebugServer.h" |
| 47 #include "bindings/v8/ScriptController.h" | 47 #include "bindings/v8/ScriptController.h" |
| 48 #include "bindings/v8/V8Binding.h" | 48 #include "bindings/v8/V8Binding.h" |
| 49 #include "bindings/v8/V8Utilities.h" | |
| 50 #include "core/dom/ExceptionCode.h" | 49 #include "core/dom/ExceptionCode.h" |
| 51 #include "core/fetch/MemoryCache.h" | 50 #include "core/fetch/MemoryCache.h" |
| 52 #include "core/frame/FrameView.h" | 51 #include "core/frame/FrameView.h" |
| 53 #include "core/frame/LocalFrame.h" | 52 #include "core/frame/LocalFrame.h" |
| 54 #include "core/inspector/InjectedScriptHost.h" | 53 #include "core/inspector/InjectedScriptHost.h" |
| 55 #include "core/inspector/InspectorController.h" | 54 #include "core/inspector/InspectorController.h" |
| 56 #include "core/page/Page.h" | 55 #include "core/page/Page.h" |
| 57 #include "core/rendering/RenderView.h" | 56 #include "core/rendering/RenderView.h" |
| 58 #include "platform/JSONValues.h" | 57 #include "platform/JSONValues.h" |
| 59 #include "platform/graphics/GraphicsContext.h" | 58 #include "platform/graphics/GraphicsContext.h" |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kProfiler_startCmd) | 643 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kProfiler_startCmd) |
| 645 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kProfiler_stopCmd); | 644 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kProfiler_stopCmd); |
| 646 } | 645 } |
| 647 | 646 |
| 648 void WebDevToolsAgent::processPendingMessages() | 647 void WebDevToolsAgent::processPendingMessages() |
| 649 { | 648 { |
| 650 PageScriptDebugServer::shared().runPendingTasks(); | 649 PageScriptDebugServer::shared().runPendingTasks(); |
| 651 } | 650 } |
| 652 | 651 |
| 653 } // namespace blink | 652 } // namespace blink |
| OLD | NEW |