Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: Source/core/inspector/InspectorFrontendHost.cpp

Issue 78513004: Move ContextMenu* files from core/ to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ContextMenuItem.cpp Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 23 matching lines...) Expand all
34 #include "bindings/v8/ScriptState.h" 34 #include "bindings/v8/ScriptState.h"
35 #include "core/fetch/ResourceFetcher.h" 35 #include "core/fetch/ResourceFetcher.h"
36 #include "core/fetch/TextResourceDecoder.h" 36 #include "core/fetch/TextResourceDecoder.h"
37 #include "core/frame/Frame.h" 37 #include "core/frame/Frame.h"
38 #include "core/inspector/InspectorController.h" 38 #include "core/inspector/InspectorController.h"
39 #include "core/inspector/InspectorFrontendClient.h" 39 #include "core/inspector/InspectorFrontendClient.h"
40 #include "core/loader/FrameLoader.h" 40 #include "core/loader/FrameLoader.h"
41 #include "core/page/ContextMenuController.h" 41 #include "core/page/ContextMenuController.h"
42 #include "core/page/ContextMenuProvider.h" 42 #include "core/page/ContextMenuProvider.h"
43 #include "core/page/Page.h" 43 #include "core/page/Page.h"
44 #include "core/platform/ContextMenu.h"
45 #include "core/platform/ContextMenuItem.h"
46 #include "core/platform/Pasteboard.h" 44 #include "core/platform/Pasteboard.h"
47 #include "core/rendering/RenderTheme.h" 45 #include "core/rendering/RenderTheme.h"
48 #include "modules/filesystem/DOMFileSystem.h" 46 #include "modules/filesystem/DOMFileSystem.h"
47 #include "platform/ContextMenu.h"
48 #include "platform/ContextMenuItem.h"
49 #include "platform/JSONValues.h" 49 #include "platform/JSONValues.h"
50 #include "platform/SharedBuffer.h" 50 #include "platform/SharedBuffer.h"
51 #include "platform/UserGestureIndicator.h" 51 #include "platform/UserGestureIndicator.h"
52 #include "platform/network/ResourceError.h" 52 #include "platform/network/ResourceError.h"
53 #include "platform/network/ResourceRequest.h" 53 #include "platform/network/ResourceRequest.h"
54 #include "platform/network/ResourceResponse.h" 54 #include "platform/network/ResourceResponse.h"
55 55
56 namespace WebCore { 56 namespace WebCore {
57 57
58 class FrontendMenuProvider : public ContextMenuProvider { 58 class FrontendMenuProvider : public ContextMenuProvider {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 params->pushString(domFileSystem->rootURL().string()); 216 params->pushString(domFileSystem->rootURL().string());
217 sendMessageToEmbedder(message->toJSONString()); 217 sendMessageToEmbedder(message->toJSONString());
218 } 218 }
219 219
220 bool InspectorFrontendHost::isUnderTest() 220 bool InspectorFrontendHost::isUnderTest()
221 { 221 {
222 return m_client && m_client->isUnderTest(); 222 return m_client && m_client->isUnderTest();
223 } 223 }
224 224
225 } // namespace WebCore 225 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorFrontendHost.h ('k') | Source/core/page/ContextMenuController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698