| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "config.h" | 29 #include "config.h" |
| 30 #include "web/InspectorOverlayImpl.h" | 30 #include "web/InspectorOverlayImpl.h" |
| 31 | 31 |
| 32 #include "bindings/core/v8/ScriptController.h" | 32 #include "bindings/core/v8/ScriptController.h" |
| 33 #include "bindings/core/v8/V8InspectorOverlayHost.h" | 33 #include "bindings/core/v8/V8InspectorOverlayHost.h" |
| 34 #include "core/dom/Node.h" | 34 #include "core/dom/Node.h" |
| 35 #include "core/frame/FrameHost.h" | 35 #include "core/frame/FrameHost.h" |
| 36 #include "core/frame/FrameView.h" | 36 #include "core/frame/FrameView.h" |
| 37 #include "core/frame/LocalFrame.h" | 37 #include "core/frame/LocalFrame.h" |
| 38 #include "core/frame/Settings.h" | 38 #include "core/frame/Settings.h" |
| 39 #include "core/input/EventHandler.h" |
| 39 #include "core/inspector/InspectorOverlayHost.h" | 40 #include "core/inspector/InspectorOverlayHost.h" |
| 40 #include "core/loader/EmptyClients.h" | 41 #include "core/loader/EmptyClients.h" |
| 41 #include "core/loader/FrameLoadRequest.h" | 42 #include "core/loader/FrameLoadRequest.h" |
| 42 #include "core/page/ChromeClient.h" | 43 #include "core/page/ChromeClient.h" |
| 43 #include "core/page/EventHandler.h" | |
| 44 #include "core/page/Page.h" | 44 #include "core/page/Page.h" |
| 45 #include "platform/JSONValues.h" | 45 #include "platform/JSONValues.h" |
| 46 #include "platform/ScriptForbiddenScope.h" | 46 #include "platform/ScriptForbiddenScope.h" |
| 47 #include "platform/graphics/GraphicsContext.h" | 47 #include "platform/graphics/GraphicsContext.h" |
| 48 #include "public/platform/Platform.h" | 48 #include "public/platform/Platform.h" |
| 49 #include "public/platform/WebData.h" | 49 #include "public/platform/WebData.h" |
| 50 #include "web/WebGraphicsContextImpl.h" | 50 #include "web/WebGraphicsContextImpl.h" |
| 51 #include "web/WebInputEventConversion.h" | 51 #include "web/WebInputEventConversion.h" |
| 52 #include "web/WebLocalFrameImpl.h" | 52 #include "web/WebLocalFrameImpl.h" |
| 53 #include "web/WebViewImpl.h" | 53 #include "web/WebViewImpl.h" |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 if (!m_suspendCount++) | 466 if (!m_suspendCount++) |
| 467 clear(); | 467 clear(); |
| 468 } | 468 } |
| 469 | 469 |
| 470 void InspectorOverlayImpl::resumeUpdates() | 470 void InspectorOverlayImpl::resumeUpdates() |
| 471 { | 471 { |
| 472 --m_suspendCount; | 472 --m_suspendCount; |
| 473 } | 473 } |
| 474 | 474 |
| 475 } // namespace blink | 475 } // namespace blink |
| OLD | NEW |