| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 unsigned char flags, double timestamp); | 72 unsigned char flags, double timestamp); |
| 73 | 73 |
| 74 virtual void setTraceEventCallback(const WebString& categoryFilter, TraceEve
ntCallback) { } | 74 virtual void setTraceEventCallback(const WebString& categoryFilter, TraceEve
ntCallback) { } |
| 75 virtual void resetTraceEventCallback() { } | 75 virtual void resetTraceEventCallback() { } |
| 76 virtual void enableTracing(const WebString& categoryFilter) { } | 76 virtual void enableTracing(const WebString& categoryFilter) { } |
| 77 virtual void disableTracing() { } | 77 virtual void disableTracing() { } |
| 78 | 78 |
| 79 virtual void startGPUEventsRecording() { } | 79 virtual void startGPUEventsRecording() { } |
| 80 virtual void stopGPUEventsRecording() { } | 80 virtual void stopGPUEventsRecording() { } |
| 81 | 81 |
| 82 // Enables device emulation as specified in params. | |
| 83 virtual void enableDeviceEmulation(const WebDeviceEmulationParams& params) {
} | |
| 84 | |
| 85 // Cancel emulation started via |enableDeviceEmulation| call. | |
| 86 virtual void disableDeviceEmulation() { } | |
| 87 | |
| 88 protected: | 82 protected: |
| 89 ~WebDevToolsAgentClient() { } | 83 ~WebDevToolsAgentClient() { } |
| 90 }; | 84 }; |
| 91 | 85 |
| 92 } // namespace blink | 86 } // namespace blink |
| 93 | 87 |
| 94 #endif | 88 #endif |
| OLD | NEW |