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

Unified Diff: Source/platform/text/BidiContext.h

Issue 25555005: Move text/BidiContext to Source/platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 2 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 | « Source/platform/blink_platform.gypi ('k') | Source/platform/text/BidiContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/text/BidiContext.h
diff --git a/Source/core/platform/text/BidiContext.h b/Source/platform/text/BidiContext.h
similarity index 94%
rename from Source/core/platform/text/BidiContext.h
rename to Source/platform/text/BidiContext.h
index c701e88ad4da92896ce84685f720ae335d95f1c7..50b2e4c7fceb1156021b6e4c595303b2cc842b72 100644
--- a/Source/core/platform/text/BidiContext.h
+++ b/Source/platform/text/BidiContext.h
@@ -22,6 +22,7 @@
#ifndef BidiContext_h
#define BidiContext_h
+#include "platform/PlatformExport.h"
#include "wtf/Assertions.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
@@ -36,7 +37,7 @@ enum BidiEmbeddingSource {
};
// Used to keep track of explicit embeddings.
-class BidiContext : public RefCounted<BidiContext> {
+class PLATFORM_EXPORT BidiContext : public RefCounted<BidiContext> {
public:
static PassRefPtr<BidiContext> create(unsigned char level, WTF::Unicode::Direction, bool override = false, BidiEmbeddingSource = FromStyleOrDOM, BidiContext* parent = 0);
@@ -76,7 +77,7 @@ inline unsigned char nextGreaterEvenLevel(unsigned char level)
return (level + 2) & ~1;
}
-bool operator==(const BidiContext&, const BidiContext&);
+PLATFORM_EXPORT bool operator==(const BidiContext&, const BidiContext&);
} // namespace WebCore
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/platform/text/BidiContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698