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

Unified Diff: public/common/WebFilterOperations.h

Issue 15079005: Create a minimal webkit_common static library for use in browser process (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: public/common/WebFilterOperations.h
diff --git a/public/platform/WebFilterOperations.h b/public/common/WebFilterOperations.h
similarity index 75%
copy from public/platform/WebFilterOperations.h
copy to public/common/WebFilterOperations.h
index c2e4730986cec775807a3b34b17b3d685d28abf8..f43b66059486f6fc0d2cb40bed4785dc049f9298 100644
--- a/public/platform/WebFilterOperations.h
+++ b/public/common/WebFilterOperations.h
@@ -26,7 +26,7 @@
#ifndef WebFilterOperations_h
#define WebFilterOperations_h
-#include "WebCommon.h"
+#include "WebCommonExport.h"
#include "WebFilterOperation.h"
#include "WebPrivateOwnPtr.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;
};

Powered by Google App Engine
This is Rietveld 408576698