OLD | NEW |
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 Loading... |
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) |
OLD | NEW |