summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/public/platform/WebRTCStatsRequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/public/platform/WebRTCStatsRequest.h')
-rw-r--r--chromium/third_party/WebKit/public/platform/WebRTCStatsRequest.h22
1 files changed, 10 insertions, 12 deletions
diff --git a/chromium/third_party/WebKit/public/platform/WebRTCStatsRequest.h b/chromium/third_party/WebKit/public/platform/WebRTCStatsRequest.h
index 914c0c4b191..c7cd98ae60b 100644
--- a/chromium/third_party/WebKit/public/platform/WebRTCStatsRequest.h
+++ b/chromium/third_party/WebKit/public/platform/WebRTCStatsRequest.h
@@ -78,26 +78,24 @@ public:
return *this;
}
- BLINK_EXPORT void assign(const WebRTCStatsRequest&);
+ BLINK_PLATFORM_EXPORT void assign(const WebRTCStatsRequest&);
- BLINK_EXPORT void reset();
+ BLINK_PLATFORM_EXPORT void reset();
// This function returns true if a selector argument was given to getStats.
- BLINK_EXPORT bool hasSelector() const;
+ BLINK_PLATFORM_EXPORT bool hasSelector() const;
- // The stream() and component() accessors give the two pieces of information
+ // The component() accessor give the information
// required to look up a MediaStreamTrack implementation.
- // It is only useful to call them when hasSelector() returns true.
- BLINK_EXPORT const WebMediaStream stream() const;
+ // It is only useful to call it when hasSelector() returns true.
+ BLINK_PLATFORM_EXPORT const WebMediaStreamTrack component() const;
- BLINK_EXPORT const WebMediaStreamTrack component() const;
+ BLINK_PLATFORM_EXPORT void requestSucceeded(const WebRTCStatsResponse&) const;
- BLINK_EXPORT void requestSucceeded(const WebRTCStatsResponse&) const;
+ BLINK_PLATFORM_EXPORT WebRTCStatsResponse createResponse() const;
- BLINK_EXPORT WebRTCStatsResponse createResponse() const;
-
-#if BLINK_IMPLEMENTATION
- WebRTCStatsRequest(const WTF::PassRefPtr<WebCore::RTCStatsRequest>&);
+#if INSIDE_BLINK
+ BLINK_PLATFORM_EXPORT WebRTCStatsRequest(const WTF::PassRefPtr<WebCore::RTCStatsRequest>&);
#endif
private: