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

Unified Diff: Source/wtf/text/ASCIIFastPath.h

Issue 14107015: Rename OS(DARWIN) to OS(MACOSX). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years, 3 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/wtf/VMTags.h ('k') | Source/wtf/unicode/icu/CollatorICU.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/ASCIIFastPath.h
diff --git a/Source/wtf/text/ASCIIFastPath.h b/Source/wtf/text/ASCIIFastPath.h
index 91ba2b88592e3aead99099a40c2122ccbbd59099..65cc3149f9f2b768c21282885441c3c708c6b036 100644
--- a/Source/wtf/text/ASCIIFastPath.h
+++ b/Source/wtf/text/ASCIIFastPath.h
@@ -28,7 +28,7 @@
#include "wtf/unicode/Unicode.h"
#include <stdint.h>
-#if OS(DARWIN) && (CPU(X86) || CPU(X86_64))
+#if OS(MACOSX) && (CPU(X86) || CPU(X86_64))
#include <emmintrin.h>
#endif
@@ -104,7 +104,7 @@ inline bool charactersAreAllASCII(const CharacterType* characters, size_t length
inline void copyLCharsFromUCharSource(LChar* destination, const UChar* source, size_t length)
{
-#if OS(DARWIN) && (CPU(X86) || CPU(X86_64))
+#if OS(MACOSX) && (CPU(X86) || CPU(X86_64))
const uintptr_t memoryAccessSize = 16; // Memory accesses on 16 byte (128 bit) alignment
const uintptr_t memoryAccessMask = memoryAccessSize - 1;
« no previous file with comments | « Source/wtf/VMTags.h ('k') | Source/wtf/unicode/icu/CollatorICU.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698