| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #include "public/web/WebViewClient.h" | 68 #include "public/web/WebViewClient.h" |
| 69 #include "web/WebInputEventConversion.h" | 69 #include "web/WebInputEventConversion.h" |
| 70 #include "web/WebLocalFrameImpl.h" | 70 #include "web/WebLocalFrameImpl.h" |
| 71 #include "web/WebViewImpl.h" | 71 #include "web/WebViewImpl.h" |
| 72 #include "wtf/CurrentTime.h" | 72 #include "wtf/CurrentTime.h" |
| 73 #include "wtf/MathExtras.h" | 73 #include "wtf/MathExtras.h" |
| 74 #include "wtf/Noncopyable.h" | 74 #include "wtf/Noncopyable.h" |
| 75 #include "wtf/text/WTFString.h" | 75 #include "wtf/text/WTFString.h" |
| 76 | 76 |
| 77 using namespace WebCore; | 77 using namespace WebCore; |
| 78 using namespace std; | |
| 79 | 78 |
| 80 namespace OverlayZOrders { | 79 namespace OverlayZOrders { |
| 81 // Use 99 as a big z-order number so that highlight is above other overlays. | 80 // Use 99 as a big z-order number so that highlight is above other overlays. |
| 82 static const int highlight = 99; | 81 static const int highlight = 99; |
| 83 } | 82 } |
| 84 | 83 |
| 85 namespace blink { | 84 namespace blink { |
| 86 | 85 |
| 87 class ClientMessageLoopAdapter : public PageScriptDebugServer::ClientMessageLoop
{ | 86 class ClientMessageLoopAdapter : public PageScriptDebugServer::ClientMessageLoop
{ |
| 88 public: | 87 public: |
| (...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_removeBreakpointCmd) | 721 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_removeBreakpointCmd) |
| 723 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_setBreakpointsActiveCmd); | 722 || commandName == InspectorBackendDispatcher::commandName(InspectorBacke
ndDispatcher::kDebugger_setBreakpointsActiveCmd); |
| 724 } | 723 } |
| 725 | 724 |
| 726 void WebDevToolsAgent::processPendingMessages() | 725 void WebDevToolsAgent::processPendingMessages() |
| 727 { | 726 { |
| 728 PageScriptDebugServer::shared().runPendingTasks(); | 727 PageScriptDebugServer::shared().runPendingTasks(); |
| 729 } | 728 } |
| 730 | 729 |
| 731 } // namespace blink | 730 } // namespace blink |
| OLD | NEW |