Chromium Code Reviews| Index: content/browser/devtools/protocol/page_handler.h |
| diff --git a/content/browser/devtools/protocol/page_handler.h b/content/browser/devtools/protocol/page_handler.h |
| index 4348a4f1d08f7cac905dd698aa9672858de50ce1..1f20ac6dd5959a18c1dba3cf872e909a1dffe8fc 100644 |
| --- a/content/browser/devtools/protocol/page_handler.h |
| +++ b/content/browser/devtools/protocol/page_handler.h |
| @@ -23,7 +23,6 @@ namespace devtools { |
| namespace page { |
| class ColorPicker; |
| -class FrameRecorder; |
| class PageHandler { |
| public: |
| @@ -75,7 +74,6 @@ class PageHandler { |
| Response StartRecordingFrames(int max_frame_count); |
| Response StopRecordingFrames(DevToolsCommandId command_id); |
| - Response CancelRecordingFrames(); |
|
dgozman
2015/03/27 12:58:58
Was it never added to protocol.json?
|
| Response HandleJavaScriptDialog(bool accept, const std::string* prompt_text); |
| @@ -100,9 +98,6 @@ class PageHandler { |
| size_t png_size); |
| void OnColorPicked(int r, int g, int b, int a); |
| - void OnFramesRecorded( |
| - DevToolsCommandId command_id, |
| - scoped_refptr<StopRecordingFramesResponse> response_data); |
| bool enabled_; |
| @@ -120,7 +115,6 @@ class PageHandler { |
| bool processing_screencast_frame_; |
| scoped_ptr<ColorPicker> color_picker_; |
| - scoped_ptr<FrameRecorder> frame_recorder_; |
| RenderViewHostImpl* host_; |
| scoped_ptr<Client> client_; |