| 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 30 matching lines...) Expand all Loading... |
| 41 #include "core/fetch/MemoryCache.h" | 41 #include "core/fetch/MemoryCache.h" |
| 42 #include "core/frame/FrameView.h" | 42 #include "core/frame/FrameView.h" |
| 43 #include "core/frame/LocalFrame.h" | 43 #include "core/frame/LocalFrame.h" |
| 44 #include "core/frame/Settings.h" | 44 #include "core/frame/Settings.h" |
| 45 #include "core/inspector/InjectedScriptHost.h" | 45 #include "core/inspector/InjectedScriptHost.h" |
| 46 #include "core/inspector/InspectorController.h" | 46 #include "core/inspector/InspectorController.h" |
| 47 #include "core/page/FocusController.h" | 47 #include "core/page/FocusController.h" |
| 48 #include "core/page/Page.h" | 48 #include "core/page/Page.h" |
| 49 #include "core/rendering/RenderView.h" | 49 #include "core/rendering/RenderView.h" |
| 50 #include "platform/JSONValues.h" | 50 #include "platform/JSONValues.h" |
| 51 #include "platform/TraceEvent.h" |
| 51 #include "platform/graphics/GraphicsContext.h" | 52 #include "platform/graphics/GraphicsContext.h" |
| 52 #include "platform/network/ResourceError.h" | 53 #include "platform/network/ResourceError.h" |
| 53 #include "platform/network/ResourceRequest.h" | 54 #include "platform/network/ResourceRequest.h" |
| 54 #include "platform/network/ResourceResponse.h" | 55 #include "platform/network/ResourceResponse.h" |
| 55 #include "public/platform/Platform.h" | 56 #include "public/platform/Platform.h" |
| 56 #include "public/platform/WebRect.h" | 57 #include "public/platform/WebRect.h" |
| 57 #include "public/platform/WebString.h" | 58 #include "public/platform/WebString.h" |
| 58 #include "public/platform/WebURL.h" | 59 #include "public/platform/WebURL.h" |
| 59 #include "public/platform/WebURLError.h" | 60 #include "public/platform/WebURLError.h" |
| 60 #include "public/platform/WebURLRequest.h" | 61 #include "public/platform/WebURLRequest.h" |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_removeBreakpointCmd) | 722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_removeBreakpointCmd) |
| 722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_setBreakpointsActiveCmd); | 723 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_setBreakpointsActiveCmd); |
| 723 } | 724 } |
| 724 | 725 |
| 725 void WebDevToolsAgent::processPendingMessages() | 726 void WebDevToolsAgent::processPendingMessages() |
| 726 { | 727 { |
| 727 PageScriptDebugServer::shared().runPendingTasks(); | 728 PageScriptDebugServer::shared().runPendingTasks(); |
| 728 } | 729 } |
| 729 | 730 |
| 730 } // namespace blink | 731 } // namespace blink |
| OLD | NEW |