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

Unified Diff: public/platform/WebMediaConstraints.h

Issue 64593002: Move MediaStreamSource to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: also move WebMediaConstraints.cpp Created 7 years, 1 month 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
« no previous file with comments | « Source/web/WebUserMediaRequest.cpp ('k') | public/platform/WebMediaStreamSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebMediaConstraints.h
diff --git a/public/platform/WebMediaConstraints.h b/public/platform/WebMediaConstraints.h
index 2052c713de40868572e9d2e2653bb60f7a5160d7..a5be50e5ede483a569730a406e0b444d571e4ef0 100644
--- a/public/platform/WebMediaConstraints.h
+++ b/public/platform/WebMediaConstraints.h
@@ -55,8 +55,8 @@ struct WebMediaConstraint {
{
}
-#if BLINK_IMPLEMENTATION
- WebMediaConstraint(const WebCore::MediaConstraint&);
+#if INSIDE_BLINK
+ BLINK_PLATFORM_EXPORT WebMediaConstraint(const WebCore::MediaConstraint&);
#endif
WebString m_name;
@@ -75,20 +75,20 @@ public:
return *this;
}
- BLINK_EXPORT void assign(const WebMediaConstraints&);
+ BLINK_PLATFORM_EXPORT void assign(const WebMediaConstraints&);
- BLINK_EXPORT void reset();
+ BLINK_PLATFORM_EXPORT void reset();
bool isNull() const { return m_private.isNull(); }
- BLINK_EXPORT void getMandatoryConstraints(WebVector<WebMediaConstraint>&) const;
- BLINK_EXPORT void getOptionalConstraints(WebVector<WebMediaConstraint>&) const;
+ BLINK_PLATFORM_EXPORT void getMandatoryConstraints(WebVector<WebMediaConstraint>&) const;
+ BLINK_PLATFORM_EXPORT void getOptionalConstraints(WebVector<WebMediaConstraint>&) const;
- BLINK_EXPORT bool getMandatoryConstraintValue(const WebString& name, WebString& value) const;
- BLINK_EXPORT bool getOptionalConstraintValue(const WebString& name, WebString& value) const;
+ BLINK_PLATFORM_EXPORT bool getMandatoryConstraintValue(const WebString& name, WebString& value) const;
+ BLINK_PLATFORM_EXPORT bool getOptionalConstraintValue(const WebString& name, WebString& value) const;
-#if BLINK_IMPLEMENTATION
- WebMediaConstraints(const WTF::PassRefPtr<WebCore::MediaConstraints>&);
- WebMediaConstraints(WebCore::MediaConstraints*);
+#if INSIDE_BLINK
+ BLINK_PLATFORM_EXPORT WebMediaConstraints(const WTF::PassRefPtr<WebCore::MediaConstraints>&);
+ BLINK_PLATFORM_EXPORT WebMediaConstraints(WebCore::MediaConstraints*);
#endif
private:
« no previous file with comments | « Source/web/WebUserMediaRequest.cpp ('k') | public/platform/WebMediaStreamSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698