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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 virtual void windowObjectCleared(); | 54 virtual void windowObjectCleared(); |
55 | 55 |
56 virtual void inspectedURLChanged(const WTF::String&); | 56 virtual void inspectedURLChanged(const WTF::String&); |
57 | 57 |
58 virtual void sendMessageToBackend(const WTF::String&); | 58 virtual void sendMessageToBackend(const WTF::String&); |
59 | 59 |
60 virtual void sendMessageToEmbedder(const WTF::String&); | 60 virtual void sendMessageToEmbedder(const WTF::String&); |
61 | 61 |
62 virtual bool isUnderTest(); | 62 virtual bool isUnderTest(); |
63 | 63 |
| 64 virtual void checkPowerProfileSupportedStatus(); |
| 65 virtual void startPowerProfile(); |
| 66 virtual void stopPowerProfile(); |
| 67 virtual void setPowerProfileResolution(unsigned); |
| 68 |
64 private: | 69 private: |
65 WebCore::Page* m_frontendPage; | 70 WebCore::Page* m_frontendPage; |
66 WebDevToolsFrontendClient* m_client; | 71 WebDevToolsFrontendClient* m_client; |
67 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; | 72 RefPtr<WebCore::InspectorFrontendHost> m_frontendHost; |
68 }; | 73 }; |
69 | 74 |
70 } // namespace blink | 75 } // namespace blink |
71 | 76 |
72 #endif | 77 #endif |
OLD | NEW |