Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 445128
Collapse All | Expand All

(-)a/comm-esr10/mozilla/ipc/chromium/src/base/file_util.cc (-1 / +1 lines)
Lines 8-14 Link Here
8
#include <io.h>
8
#include <io.h>
9
#endif
9
#endif
10
#include <stdio.h>
10
#include <stdio.h>
11
#if defined(ANDROID)
11
#if defined(ANDROID) || defined(OS_POSIX)
12
#include <unistd.h>
12
#include <unistd.h>
13
#endif
13
#endif
14
14
(-)a/comm-esr10/mozilla/ipc/chromium/src/base/file_util_linux.cc (+3 lines)
Lines 5-10 Link Here
5
#include "base/file_util.h"
5
#include "base/file_util.h"
6
6
7
#include <fcntl.h>
7
#include <fcntl.h>
8
#if defined(ANDROID) || defined(OS_POSIX)
9
#include <unistd.h>
10
#endif
8
11
9
#include <string>
12
#include <string>
10
#include <vector>
13
#include <vector>
(-)a/comm-esr10/mozilla/ipc/chromium/src/base/message_pump_libevent.cc (+3 lines)
Lines 6-11 Link Here
6
6
7
#include <errno.h>
7
#include <errno.h>
8
#include <fcntl.h>
8
#include <fcntl.h>
9
#if defined(ANDROID) || defined(OS_POSIX)
10
#include <unistd.h>
11
#endif
9
12
10
#include "eintr_wrapper.h"
13
#include "eintr_wrapper.h"
11
#include "base/logging.h"
14
#include "base/logging.h"
(-)a/comm-esr10/mozilla/ipc/chromium/src/base/time_posix.cc (+3 lines)
Lines 13-18 Link Here
13
#else
13
#else
14
#include <time.h>
14
#include <time.h>
15
#endif
15
#endif
16
#if defined(ANDROID) || defined(OS_POSIX)
17
#include <unistd.h>
18
#endif
16
19
17
#include <limits>
20
#include <limits>
18
21

Return to bug 445128