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

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

Issue 57373002: DevTools: Add support for adding folders to workspace with drag and drop (renderer part) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 // Called from [Custom] implementations. 65 // Called from [Custom] implementations.
66 void showContextMenu(Event*, const Vector<ContextMenuItem>& items); 66 void showContextMenu(Event*, const Vector<ContextMenuItem>& items);
67 void sendMessageToBackend(const String& message); 67 void sendMessageToBackend(const String& message);
68 void sendMessageToEmbedder(const String& message); 68 void sendMessageToEmbedder(const String& message);
69 69
70 String getSelectionBackgroundColor(); 70 String getSelectionBackgroundColor();
71 String getSelectionForegroundColor(); 71 String getSelectionForegroundColor();
72 72
73 PassRefPtr<DOMFileSystem> isolatedFileSystem(const String& fileSystemName, c onst String& rootURL); 73 PassRefPtr<DOMFileSystem> isolatedFileSystem(const String& fileSystemName, c onst String& rootURL);
74 void upgradeDraggedFileSystemPermissions(DOMFileSystem*);
74 75
75 bool isUnderTest(); 76 bool isUnderTest();
76 77
77 private: 78 private:
78 friend class FrontendMenuProvider; 79 friend class FrontendMenuProvider;
79 InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage); 80 InspectorFrontendHost(InspectorFrontendClient* client, Page* frontendPage);
80 81
81 InspectorFrontendClient* m_client; 82 InspectorFrontendClient* m_client;
82 Page* m_frontendPage; 83 Page* m_frontendPage;
83 FrontendMenuProvider* m_menuProvider; 84 FrontendMenuProvider* m_menuProvider;
84 }; 85 };
85 86
86 } // namespace WebCore 87 } // namespace WebCore
87 88
88 #endif // !defined(InspectorFrontendHost_h) 89 #endif // !defined(InspectorFrontendHost_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorFrontendHost.cpp » ('j') | Source/devtools/front_end/SourcesPanel.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698