| 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 25 matching lines...) Expand all Loading... |
| 36 #include "core/fetch/TextResourceDecoder.h" | 36 #include "core/fetch/TextResourceDecoder.h" |
| 37 #include "core/inspector/InspectorController.h" | 37 #include "core/inspector/InspectorController.h" |
| 38 #include "core/inspector/InspectorFrontendClient.h" | 38 #include "core/inspector/InspectorFrontendClient.h" |
| 39 #include "core/loader/FrameLoader.h" | 39 #include "core/loader/FrameLoader.h" |
| 40 #include "core/page/ContextMenuController.h" | 40 #include "core/page/ContextMenuController.h" |
| 41 #include "core/page/ContextMenuProvider.h" | 41 #include "core/page/ContextMenuProvider.h" |
| 42 #include "core/page/Frame.h" | 42 #include "core/page/Frame.h" |
| 43 #include "core/page/Page.h" | 43 #include "core/page/Page.h" |
| 44 #include "core/platform/ContextMenu.h" | 44 #include "core/platform/ContextMenu.h" |
| 45 #include "core/platform/ContextMenuItem.h" | 45 #include "core/platform/ContextMenuItem.h" |
| 46 #include "core/platform/JSONValues.h" | |
| 47 #include "core/platform/Pasteboard.h" | 46 #include "core/platform/Pasteboard.h" |
| 47 #include "platform/JSONValues.h" |
| 48 #include "platform/SharedBuffer.h" | 48 #include "platform/SharedBuffer.h" |
| 49 #include "core/platform/network/ResourceError.h" | 49 #include "core/platform/network/ResourceError.h" |
| 50 #include "core/platform/network/ResourceRequest.h" | 50 #include "core/platform/network/ResourceRequest.h" |
| 51 #include "core/platform/network/ResourceResponse.h" | 51 #include "core/platform/network/ResourceResponse.h" |
| 52 #include "core/rendering/RenderTheme.h" | 52 #include "core/rendering/RenderTheme.h" |
| 53 #include "modules/filesystem/DOMFileSystem.h" | 53 #include "modules/filesystem/DOMFileSystem.h" |
| 54 | 54 |
| 55 namespace WebCore { | 55 namespace WebCore { |
| 56 | 56 |
| 57 class FrontendMenuProvider : public ContextMenuProvider { | 57 class FrontendMenuProvider : public ContextMenuProvider { |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 { | 271 { |
| 272 return false; | 272 return false; |
| 273 } | 273 } |
| 274 | 274 |
| 275 String InspectorFrontendHost::hiddenPanels() | 275 String InspectorFrontendHost::hiddenPanels() |
| 276 { | 276 { |
| 277 return ""; | 277 return ""; |
| 278 } | 278 } |
| 279 | 279 |
| 280 } // namespace WebCore | 280 } // namespace WebCore |
| OLD | NEW |