| 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 17 matching lines...) Expand all Loading... |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #include "config.h" | 30 #include "config.h" |
| 31 #include "InspectorFrontendHost.h" | 31 #include "InspectorFrontendHost.h" |
| 32 | 32 |
| 33 #include "ContextMenu.h" | 33 #include "ContextMenu.h" |
| 34 #include "ContextMenuItem.h" | 34 #include "ContextMenuItem.h" |
| 35 #include "ContextMenuController.h" | 35 #include "ContextMenuController.h" |
| 36 #include "ContextMenuProvider.h" | 36 #include "ContextMenuProvider.h" |
| 37 #include "DOMFileSystem.h" | 37 #include "DOMFileSystem.h" |
| 38 #include "DOMWrapperWorld.h" |
| 38 #include "Element.h" | 39 #include "Element.h" |
| 39 #include "Frame.h" | 40 #include "Frame.h" |
| 40 #include "FrameLoader.h" | 41 #include "FrameLoader.h" |
| 41 #include "HitTestResult.h" | 42 #include "HitTestResult.h" |
| 42 #include "HTMLFrameOwnerElement.h" | 43 #include "HTMLFrameOwnerElement.h" |
| 43 #include "InspectorAgent.h" | 44 #include "InspectorAgent.h" |
| 44 #include "InspectorController.h" | 45 #include "InspectorController.h" |
| 45 #include "InspectorFrontendClient.h" | 46 #include "InspectorFrontendClient.h" |
| 46 #include "Page.h" | 47 #include "Page.h" |
| 47 #include "Pasteboard.h" | 48 #include "Pasteboard.h" |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 { | 337 { |
| 337 return false; | 338 return false; |
| 338 } | 339 } |
| 339 | 340 |
| 340 String InspectorFrontendHost::hiddenPanels() | 341 String InspectorFrontendHost::hiddenPanels() |
| 341 { | 342 { |
| 342 return ""; | 343 return ""; |
| 343 } | 344 } |
| 344 | 345 |
| 345 } // namespace WebCore | 346 } // namespace WebCore |
| OLD | NEW |