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

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

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/MediaStreamWebAudioSource.h
diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamWebAudioSource.h b/third_party/WebKit/Source/platform/mediastream/MediaStreamWebAudioSource.h
index 39dfdc3f9b27da4c678c6df00ed1023257b82bf1..6db26766d9863de20b73671e14814b437b4cf0b5 100644
--- a/third_party/WebKit/Source/platform/mediastream/MediaStreamWebAudioSource.h
+++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamWebAudioSource.h
@@ -48,7 +48,7 @@ class MediaStreamWebAudioSource : public AudioSourceProvider {
public:
static std::unique_ptr<MediaStreamWebAudioSource> create(
std::unique_ptr<WebAudioSourceProvider> provider) {
- return wrapUnique(new MediaStreamWebAudioSource(std::move(provider)));
+ return WTF::wrapUnique(new MediaStreamWebAudioSource(std::move(provider)));
}
~MediaStreamWebAudioSource() override;

Powered by Google App Engine
This is Rietveld 408576698