Chromium Code Reviews| Index: public/platform/WebMediaConstraints.h |
| diff --git a/public/platform/WebMediaConstraints.h b/public/platform/WebMediaConstraints.h |
| index 2052c713de40868572e9d2e2653bb60f7a5160d7..c47719915a2d89462a686f099df33c6df3dda5a6 100644 |
| --- a/public/platform/WebMediaConstraints.h |
| +++ b/public/platform/WebMediaConstraints.h |
| @@ -55,7 +55,7 @@ struct WebMediaConstraint { |
| { |
| } |
| -#if BLINK_IMPLEMENTATION |
| +#if INSIDE_BLINK |
| WebMediaConstraint(const WebCore::MediaConstraint&); |
|
abarth-chromium
2013/11/07 18:23:23
This doesn't need an export?
|
| #endif |
| @@ -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: |