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

Unified Diff: third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.h

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 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
Index: third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.h
diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.h b/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.h
index 8a7824c5844326919f65f0af41f5060b4a0475ba..7594056a9bc788439010b36cdfa2795cb84a3e13 100644
--- a/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.h
+++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.h
@@ -68,7 +68,7 @@ public:
void setEnabled(bool enabled) { m_enabled = enabled; }
bool muted() const { return m_muted; }
void setMuted(bool muted) { m_muted = muted; }
- AudioSourceProvider* audioSourceProvider() { return &m_sourceProvider; }
+ AudioSourceProvider* getAudioSourceProvider() { return &m_sourceProvider; }
void setSourceProvider(WebAudioSourceProvider* provider) { m_sourceProvider.wrap(provider); }
ExtraData* extraData() const { return m_extraData.get(); }

Powered by Google App Engine
This is Rietveld 408576698