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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 #include "modules/cachestorage/InspectorCacheStorageAgent.h" | 64 #include "modules/cachestorage/InspectorCacheStorageAgent.h" |
65 #include "modules/device_orientation/DeviceOrientationInspectorAgent.h" | 65 #include "modules/device_orientation/DeviceOrientationInspectorAgent.h" |
66 #include "modules/indexeddb/InspectorIndexedDBAgent.h" | 66 #include "modules/indexeddb/InspectorIndexedDBAgent.h" |
67 #include "modules/storage/InspectorDOMStorageAgent.h" | 67 #include "modules/storage/InspectorDOMStorageAgent.h" |
68 #include "modules/webdatabase/InspectorDatabaseAgent.h" | 68 #include "modules/webdatabase/InspectorDatabaseAgent.h" |
69 #include "platform/CrossThreadFunctional.h" | 69 #include "platform/CrossThreadFunctional.h" |
70 #include "platform/RuntimeEnabledFeatures.h" | 70 #include "platform/RuntimeEnabledFeatures.h" |
71 #include "platform/TraceEvent.h" | 71 #include "platform/TraceEvent.h" |
72 #include "platform/graphics/GraphicsContext.h" | 72 #include "platform/graphics/GraphicsContext.h" |
73 #include "platform/graphics/paint/PaintController.h" | 73 #include "platform/graphics/paint/PaintController.h" |
74 #include "platform/inspector_protocol/InspectorProtocol.h" | |
75 #include "platform/v8_inspector/public/V8Inspector.h" | 74 #include "platform/v8_inspector/public/V8Inspector.h" |
76 #include "platform/v8_inspector/public/V8InspectorSession.h" | 75 #include "platform/v8_inspector/public/V8InspectorSession.h" |
77 #include "public/platform/Platform.h" | 76 #include "public/platform/Platform.h" |
78 #include "public/platform/WebLayerTreeView.h" | 77 #include "public/platform/WebLayerTreeView.h" |
79 #include "public/platform/WebRect.h" | 78 #include "public/platform/WebRect.h" |
80 #include "public/platform/WebString.h" | 79 #include "public/platform/WebString.h" |
81 #include "public/web/WebDevToolsAgentClient.h" | 80 #include "public/web/WebDevToolsAgentClient.h" |
82 #include "public/web/WebSettings.h" | 81 #include "public/web/WebSettings.h" |
83 #include "web/DevToolsEmulator.h" | 82 #include "web/DevToolsEmulator.h" |
84 #include "web/InspectorEmulationAgent.h" | 83 #include "web/InspectorEmulationAgent.h" |
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 bool WebDevToolsAgent::shouldInterruptForMethod(const WebString& method) | 668 bool WebDevToolsAgent::shouldInterruptForMethod(const WebString& method) |
670 { | 669 { |
671 return method == "Debugger.pause" | 670 return method == "Debugger.pause" |
672 || method == "Debugger.setBreakpoint" | 671 || method == "Debugger.setBreakpoint" |
673 || method == "Debugger.setBreakpointByUrl" | 672 || method == "Debugger.setBreakpointByUrl" |
674 || method == "Debugger.removeBreakpoint" | 673 || method == "Debugger.removeBreakpoint" |
675 || method == "Debugger.setBreakpointsActive"; | 674 || method == "Debugger.setBreakpointsActive"; |
676 } | 675 } |
677 | 676 |
678 } // namespace blink | 677 } // namespace blink |
OLD | NEW |