| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 20 matching lines...) Expand all Loading... |
| 31 #ifndef WebDevToolsAgentClient_h | 31 #ifndef WebDevToolsAgentClient_h |
| 32 #define WebDevToolsAgentClient_h | 32 #define WebDevToolsAgentClient_h |
| 33 | 33 |
| 34 #include "../platform/WebCommon.h" | 34 #include "../platform/WebCommon.h" |
| 35 #include "../platform/WebString.h" | 35 #include "../platform/WebString.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class WebLocalFrame; | 39 class WebLocalFrame; |
| 40 class WebString; | 40 class WebString; |
| 41 struct WebDeviceEmulationParams; | |
| 42 | 41 |
| 43 class WebDevToolsAgentClient { | 42 class WebDevToolsAgentClient { |
| 44 public: | 43 public: |
| 45 // Sends response message over the protocol, update agent state on the browser | 44 // Sends response message over the protocol, update agent state on the browser |
| 46 // side for potential re-attach. |callId| for notifications is 0, |state| for | 45 // side for potential re-attach. |callId| for notifications is 0, |state| for |
| 47 // notifications is empty. | 46 // notifications is empty. |
| 48 virtual void sendProtocolMessage(int sessionId, | 47 virtual void sendProtocolMessage(int sessionId, |
| 49 int callId, | 48 int callId, |
| 50 const WebString& response, | 49 const WebString& response, |
| 51 const WebString& state) {} | 50 const WebString& state) {} |
| (...skipping 25 matching lines...) Expand all Loading... |
| 77 | 76 |
| 78 virtual void setCPUThrottlingRate(double rate) {} | 77 virtual void setCPUThrottlingRate(double rate) {} |
| 79 | 78 |
| 80 protected: | 79 protected: |
| 81 ~WebDevToolsAgentClient() {} | 80 ~WebDevToolsAgentClient() {} |
| 82 }; | 81 }; |
| 83 | 82 |
| 84 } // namespace blink | 83 } // namespace blink |
| 85 | 84 |
| 86 #endif | 85 #endif |
| OLD | NEW |