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

Side by Side Diff: third_party/WebKit/Source/platform/wtf/ByteOrder.h

Issue 2767153004: Move files in wtf/ to platform/wtf/ (Part 12). (Closed)
Patch Set: Rebase. Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 19 matching lines...) Expand all
30 30
31 #ifndef WTF_ByteOrder_h 31 #ifndef WTF_ByteOrder_h
32 #define WTF_ByteOrder_h 32 #define WTF_ByteOrder_h
33 33
34 #if OS(POSIX) 34 #if OS(POSIX)
35 #include <arpa/inet.h> 35 #include <arpa/inet.h>
36 #endif 36 #endif
37 37
38 #if OS(WIN) 38 #if OS(WIN)
39 39
40 #include "wtf/ByteSwap.h" 40 #include "platform/wtf/ByteSwap.h"
41 #include "wtf/CPU.h" 41 #include "platform/wtf/CPU.h"
42 42
43 #if CPU(BIG_ENDIAN) 43 #if CPU(BIG_ENDIAN)
44 inline uint16_t ntohs(uint16_t x) { 44 inline uint16_t ntohs(uint16_t x) {
45 return x; 45 return x;
46 } 46 }
47 inline uint16_t htons(uint16_t x) { 47 inline uint16_t htons(uint16_t x) {
48 return x; 48 return x;
49 } 49 }
50 inline uint32_t ntohl(uint32_t x) { 50 inline uint32_t ntohl(uint32_t x) {
51 return x; 51 return x;
(...skipping 25 matching lines...) Expand all
77 return WTF::bswap32(x); 77 return WTF::bswap32(x);
78 } 78 }
79 inline uint32_t htonl(uint32_t x) { 79 inline uint32_t htonl(uint32_t x) {
80 return WTF::bswap32(x); 80 return WTF::bswap32(x);
81 } 81 }
82 #endif 82 #endif
83 83
84 #endif // OS(WIN) 84 #endif // OS(WIN)
85 85
86 #endif // WTF_ByteOrder_h 86 #endif // WTF_ByteOrder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698