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

Unified Diff: content/renderer/media/webmediaplayer_ms_compositor.h

Issue 2751353003: Bug Fix: Data Race For WebMediaPlayerMS' Frame Count Variable (Closed)
Patch Set: Remove const Created 3 years, 9 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 | « no previous file | content/renderer/media/webmediaplayer_ms_compositor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/webmediaplayer_ms_compositor.h
diff --git a/content/renderer/media/webmediaplayer_ms_compositor.h b/content/renderer/media/webmediaplayer_ms_compositor.h
index ff71f7f4cf41f56700781d7381a6781f34e2cdb5..f900873660a80c98100fadfbc5b74f446820adb1 100644
--- a/content/renderer/media/webmediaplayer_ms_compositor.h
+++ b/content/renderer/media/webmediaplayer_ms_compositor.h
@@ -64,8 +64,8 @@ class CONTENT_EXPORT WebMediaPlayerMSCompositor
// Statistical data
gfx::Size GetCurrentSize();
base::TimeDelta GetCurrentTime();
- size_t total_frame_count() const;
- size_t dropped_frame_count() const;
+ size_t total_frame_count();
+ size_t dropped_frame_count();
// VideoFrameProvider implementation.
void SetVideoFrameProviderClient(
« no previous file with comments | « no previous file | content/renderer/media/webmediaplayer_ms_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698