Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Unified Diff: media/capture/video/video_capture_buffer_handle.h

Issue 2818513003: [Mojo Video Capture] Adapt video_capture service to refactored video capture stack (Closed)
Patch Set: Fix compile errors Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/capture/video/shared_memory_buffer_tracker.cc ('k') | services/video_capture/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/video/video_capture_buffer_handle.h
diff --git a/media/capture/video/video_capture_buffer_handle.h b/media/capture/video/video_capture_buffer_handle.h
index 5dd15ebd26650666057a7f3e758549a31c7defea..657ebc92664214dc7cf8c420bb5561f19f6de3ac 100644
--- a/media/capture/video/video_capture_buffer_handle.h
+++ b/media/capture/video/video_capture_buffer_handle.h
@@ -18,8 +18,8 @@ class CAPTURE_EXPORT VideoCaptureBufferHandle {
public:
virtual ~VideoCaptureBufferHandle() {}
virtual size_t mapped_size() const = 0;
- virtual uint8_t* data() = 0;
- virtual const uint8_t* data() const = 0;
+ virtual uint8_t* data() const = 0;
+ virtual const uint8_t* const_data() const = 0;
};
} // namespace media
« no previous file with comments | « media/capture/video/shared_memory_buffer_tracker.cc ('k') | services/video_capture/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698