| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> | 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "core/inspector/InspectorFrontendHost.h" | 31 #include "core/inspector/InspectorFrontendHost.h" |
| 32 | 32 |
| 33 #include "bindings/v8/DOMWrapperWorld.h" | |
| 34 #include "bindings/v8/ScriptFunctionCall.h" | 33 #include "bindings/v8/ScriptFunctionCall.h" |
| 35 #include "core/dom/Element.h" | |
| 36 #include "core/dom/UserGestureIndicator.h" | 34 #include "core/dom/UserGestureIndicator.h" |
| 37 #include "core/html/HTMLFrameOwnerElement.h" | |
| 38 #include "core/inspector/InspectorAgent.h" | |
| 39 #include "core/inspector/InspectorController.h" | 35 #include "core/inspector/InspectorController.h" |
| 40 #include "core/inspector/InspectorFrontendClient.h" | 36 #include "core/inspector/InspectorFrontendClient.h" |
| 41 #include "core/loader/FrameLoader.h" | 37 #include "core/loader/FrameLoader.h" |
| 42 #include "core/page/ContextMenuController.h" | 38 #include "core/page/ContextMenuController.h" |
| 43 #include "core/page/ContextMenuProvider.h" | 39 #include "core/page/ContextMenuProvider.h" |
| 44 #include "core/page/Frame.h" | 40 #include "core/page/Frame.h" |
| 45 #include "core/page/Page.h" | 41 #include "core/page/Page.h" |
| 46 #include "core/platform/ContextMenu.h" | 42 #include "core/platform/ContextMenu.h" |
| 47 #include "core/platform/ContextMenuItem.h" | 43 #include "core/platform/ContextMenuItem.h" |
| 48 #include "core/platform/Pasteboard.h" | 44 #include "core/platform/Pasteboard.h" |
| 49 #include "core/platform/network/ResourceError.h" | 45 #include "core/platform/network/ResourceError.h" |
| 50 #include "core/platform/network/ResourceRequest.h" | 46 #include "core/platform/network/ResourceRequest.h" |
| 51 #include "core/platform/network/ResourceResponse.h" | 47 #include "core/platform/network/ResourceResponse.h" |
| 52 #include "core/rendering/HitTestResult.h" | |
| 53 #include "core/rendering/RenderTheme.h" | 48 #include "core/rendering/RenderTheme.h" |
| 54 #include "modules/filesystem/DOMFileSystem.h" | 49 #include "modules/filesystem/DOMFileSystem.h" |
| 55 #include <wtf/StdLibExtras.h> | 50 #include <wtf/StdLibExtras.h> |
| 56 | 51 |
| 57 using namespace std; | 52 using namespace std; |
| 58 | 53 |
| 59 namespace WebCore { | 54 namespace WebCore { |
| 60 | 55 |
| 61 class FrontendMenuProvider : public ContextMenuProvider { | 56 class FrontendMenuProvider : public ContextMenuProvider { |
| 62 public: | 57 public: |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 { | 320 { |
| 326 return false; | 321 return false; |
| 327 } | 322 } |
| 328 | 323 |
| 329 String InspectorFrontendHost::hiddenPanels() | 324 String InspectorFrontendHost::hiddenPanels() |
| 330 { | 325 { |
| 331 return ""; | 326 return ""; |
| 332 } | 327 } |
| 333 | 328 |
| 334 } // namespace WebCore | 329 } // namespace WebCore |
| OLD | NEW |