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

Unified Diff: Source/modules/mediastream/SourceInfo.h

Issue 461163002: Cleanup namespace usage in Source/core/modules/[mediasource/* to websockets/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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: Source/modules/mediastream/SourceInfo.h
diff --git a/Source/modules/mediastream/SourceInfo.h b/Source/modules/mediastream/SourceInfo.h
index c34065d64da1a79891cbd26dd61ef51dd6af25cf..3029be0b612ebf8fa636a2e6123a69a36807a5db 100644
--- a/Source/modules/mediastream/SourceInfo.h
+++ b/Source/modules/mediastream/SourceInfo.h
@@ -34,7 +34,7 @@ namespace blink {
class SourceInfo : public GarbageCollectedFinalized<SourceInfo>, public ScriptWrappable {
public:
- static SourceInfo* create(const blink::WebSourceInfo&);
+ static SourceInfo* create(const WebSourceInfo&);
String id() const;
String kind() const;
@@ -44,9 +44,9 @@ public:
void trace(Visitor*) { }
private:
- explicit SourceInfo(const blink::WebSourceInfo&);
+ explicit SourceInfo(const WebSourceInfo&);
- blink::WebSourceInfo m_webSourceInfo;
+ WebSourceInfo m_webSourceInfo;
};
typedef HeapVector<Member<SourceInfo> > SourceInfoVector;
« no previous file with comments | « Source/modules/mediastream/RTCSessionDescriptionRequestImpl.h ('k') | Source/modules/mediastream/UserMediaRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698