OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 virtual void changeAttachedWindowHeight(unsigned); | 62 virtual void changeAttachedWindowHeight(unsigned); |
63 | 63 |
64 virtual void openInNewTab(const String& url); | 64 virtual void openInNewTab(const String& url); |
65 | 65 |
66 virtual void save(const WTF::String& urk, const WTF::String& content, bool f
orceSaveAs); | 66 virtual void save(const WTF::String& urk, const WTF::String& content, bool f
orceSaveAs); |
67 virtual void append(const WTF::String& urk, const WTF::String& content); | 67 virtual void append(const WTF::String& urk, const WTF::String& content); |
68 | 68 |
69 virtual void inspectedURLChanged(const WTF::String&); | 69 virtual void inspectedURLChanged(const WTF::String&); |
70 | 70 |
71 virtual void sendMessageToBackend(const WTF::String&); | 71 virtual void sendMessageToBackend(const WTF::String&); |
| 72 virtual void sendMessageToEmbedder(const WTF::String&); |
72 | 73 |
73 virtual void requestFileSystems(); | 74 virtual void requestFileSystems(); |
74 virtual void addFileSystem(); | 75 virtual void addFileSystem(); |
75 virtual void removeFileSystem(const String& fileSystemPath); | 76 virtual void removeFileSystem(const String& fileSystemPath); |
76 virtual void indexPath(int requestId, const String& fileSystemPath); | 77 virtual void indexPath(int requestId, const String& fileSystemPath); |
77 virtual void stopIndexing(int requestId); | 78 virtual void stopIndexing(int requestId); |
78 virtual void searchInPath(int requestId, const String& fileSystemPath, const
String& query); | 79 virtual void searchInPath(int requestId, const String& fileSystemPath, const
String& query); |
79 | 80 |
80 virtual bool isUnderTest(); | 81 virtual bool isUnderTest(); |
81 | 82 |
82 private: | 83 private: |
83 WebCore::Page* m_frontendPage; | 84 WebCore::Page* m_frontendPage; |
84 WebDevToolsFrontendClient* m_client; | 85 WebDevToolsFrontendClient* m_client; |
85 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; | 86 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; |
86 }; | 87 }; |
87 | 88 |
88 } // namespace WebKit | 89 } // namespace WebKit |
89 | 90 |
90 #endif | 91 #endif |
OLD | NEW |