| Summary: | Change load(MediaStreamPrivate*) method to use references | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Matthew Daiter <mdaiter> | ||||||||
| Component: | WebCore Misc. | Assignee: | Matthew Daiter <mdaiter> | ||||||||
| Status: | RESOLVED FIXED | ||||||||||
| Severity: | Normal | CC: | bfulgham, commit-queue, eric.carlson, jonlee, mdaiter, webkit-bug-importer, webkit.review.bot | ||||||||
| Priority: | P2 | Keywords: | InRadar, PlatformOnly | ||||||||
| Version: | 528+ (Nightly build) | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| Bug Depends on: | |||||||||||
| Bug Blocks: | 146788 | ||||||||||
| Attachments: |
|
||||||||||
|
Description
Matthew Daiter
2015-07-10 10:45:26 PDT
Created attachment 256592 [details]
Patch
Created attachment 256607 [details]
Patch
Comment on attachment 256607 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=256607&action=review So no one uses this argument yet? > Source/WebCore/platform/graphics/MediaPlayer.cpp:427 > + m_private->load(*m_mediaStream.get()); Should not need .get() here. > Source/WebCore/platform/mock/mediasource/MockMediaPlayerMediaSource.h:64 > + virtual void load(MediaStreamPrivate&) override { }; Should remove the stray semicolon here. Created attachment 256626 [details]
Patch
*** Bug 146811 has been marked as a duplicate of this bug. *** Turning off cq+, because Matthew hasn't addressed Darin's comments. (In reply to comment #4) > Comment on attachment 256607 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=256607&action=review > > So no one uses this argument yet? > > > Source/WebCore/platform/graphics/MediaPlayer.cpp:427 > > + m_private->load(*m_mediaStream.get()); > > Should not need .get() here. I'll fix while landing. > > Source/WebCore/platform/mock/mediasource/MockMediaPlayerMediaSource.h:64 > > + virtual void load(MediaStreamPrivate&) override { }; > > Should remove the stray semicolon here. Ditto. Committed r186769: <http://trac.webkit.org/changeset/186769> |