| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 virtual void openInNewTab(const String& url); | 68 virtual void openInNewTab(const String& url); |
| 69 | 69 |
| 70 virtual bool canSave(); | 70 virtual bool canSave(); |
| 71 virtual void save(const WTF::String& urk, const WTF::String& content, bool f
orceSaveAs); | 71 virtual void save(const WTF::String& urk, const WTF::String& content, bool f
orceSaveAs); |
| 72 virtual void append(const WTF::String& urk, const WTF::String& content); | 72 virtual void append(const WTF::String& urk, const WTF::String& content); |
| 73 virtual bool canInspectWorkers(); | 73 virtual bool canInspectWorkers(); |
| 74 | 74 |
| 75 virtual void inspectedURLChanged(const WTF::String&); | 75 virtual void inspectedURLChanged(const WTF::String&); |
| 76 | 76 |
| 77 virtual void sendMessageToBackend(const WTF::String&); | 77 virtual void sendMessageToBackend(const WTF::String&); |
| 78 |
| 79 virtual bool isUnderTest(); |
| 80 |
| 78 private: | 81 private: |
| 79 WebCore::Page* m_frontendPage; | 82 WebCore::Page* m_frontendPage; |
| 80 WebDevToolsFrontendClient* m_client; | 83 WebDevToolsFrontendClient* m_client; |
| 81 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; | 84 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; |
| 82 }; | 85 }; |
| 83 | 86 |
| 84 } // namespace WebKit | 87 } // namespace WebKit |
| 85 | 88 |
| 86 #endif | 89 #endif |
| OLD | NEW |