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

Unified Diff: Source/core/style/NinePieceImage.h

Issue 1212123003: Componentization: make symbols visible. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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: Source/core/style/NinePieceImage.h
diff --git a/Source/core/style/NinePieceImage.h b/Source/core/style/NinePieceImage.h
index 37068587ece0b8e4a954a3a81b86352acfd32848..b5cbcb9cc4d005acbebed422f8903494d93b3c3b 100644
--- a/Source/core/style/NinePieceImage.h
+++ b/Source/core/style/NinePieceImage.h
@@ -24,6 +24,7 @@
#ifndef NinePieceImage_h
#define NinePieceImage_h
+#include "core/CoreExport.h"
#include "core/style/BorderImageLengthBox.h"
#include "core/style/DataRef.h"
#include "core/style/StyleImage.h"
@@ -36,7 +37,7 @@ enum ENinePieceImageRule {
StretchImageRule, RoundImageRule, SpaceImageRule, RepeatImageRule
};
-class NinePieceImageData : public RefCounted<NinePieceImageData> {
+class CORE_EXPORT NinePieceImageData : public RefCounted<NinePieceImageData> {
public:
static PassRefPtr<NinePieceImageData> create() { return adoptRef(new NinePieceImageData); }
PassRefPtr<NinePieceImageData> copy() const { return adoptRef(new NinePieceImageData(*this)); }
@@ -57,7 +58,7 @@ private:
NinePieceImageData(const NinePieceImageData&);
};
-class NinePieceImage {
+class CORE_EXPORT NinePieceImage {
public:
NinePieceImage();
NinePieceImage(PassRefPtr<StyleImage>, LengthBox imageSlices, bool fill, const BorderImageLengthBox& borderSlices,

Powered by Google App Engine
This is Rietveld 408576698