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

Unified Diff: public/platform/WebFilterOperations.h

Issue 16024011: Construct a minimal blink library in-place (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix mac again Created 7 years, 6 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
« no previous file with comments | « public/platform/WebFilterOperation.h ('k') | public/platform/WebPoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebFilterOperations.h
diff --git a/public/platform/WebFilterOperations.h b/public/platform/WebFilterOperations.h
index c2e4730986cec775807a3b34b17b3d685d28abf8..5aa2d1b58d85bde0116322a53d46c122c53cfbb2 100644
--- a/public/platform/WebFilterOperations.h
+++ b/public/platform/WebFilterOperations.h
@@ -50,25 +50,25 @@ public:
}
~WebFilterOperations() { destroy(); }
- WEBKIT_EXPORT void assign(const WebFilterOperations&);
- WEBKIT_EXPORT bool equals(const WebFilterOperations&) const;
+ BLINK_COMMON_EXPORT void assign(const WebFilterOperations&);
+ BLINK_COMMON_EXPORT bool equals(const WebFilterOperations&) const;
- WEBKIT_EXPORT void append(const WebFilterOperation&);
+ BLINK_COMMON_EXPORT void append(const WebFilterOperation&);
// Removes all filter operations.
- WEBKIT_EXPORT void clear();
- WEBKIT_EXPORT bool isEmpty() const;
+ BLINK_COMMON_EXPORT void clear();
+ BLINK_COMMON_EXPORT bool isEmpty() const;
- WEBKIT_EXPORT void getOutsets(int& top, int& right, int& bottom, int& left) const;
- WEBKIT_EXPORT bool hasFilterThatMovesPixels() const;
- WEBKIT_EXPORT bool hasFilterThatAffectsOpacity() const;
+ BLINK_COMMON_EXPORT void getOutsets(int& top, int& right, int& bottom, int& left) const;
+ BLINK_COMMON_EXPORT bool hasFilterThatMovesPixels() const;
+ BLINK_COMMON_EXPORT bool hasFilterThatAffectsOpacity() const;
- WEBKIT_EXPORT size_t size() const;
- WEBKIT_EXPORT WebFilterOperation at(size_t) const;
+ BLINK_COMMON_EXPORT size_t size() const;
+ BLINK_COMMON_EXPORT WebFilterOperation at(size_t) const;
private:
- WEBKIT_EXPORT void initialize();
- WEBKIT_EXPORT void destroy();
+ BLINK_COMMON_EXPORT void initialize();
+ BLINK_COMMON_EXPORT void destroy();
WebPrivateOwnPtr<WebFilterOperationsPrivate> m_private;
};
« no previous file with comments | « public/platform/WebFilterOperation.h ('k') | public/platform/WebPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698