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

Unified Diff: src/platform.h

Issue 304153016: Use full include paths everywhere (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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 | « src/parser.cc ('k') | src/platform-cygwin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform.h
diff --git a/src/platform.h b/src/platform.h
index 4c7dc3f34b91a1673cbbf848872ffb828f091f50..d131d7d29f509e758b2b7934f1317b1bb6c2ffa6 100644
--- a/src/platform.h
+++ b/src/platform.h
@@ -23,10 +23,10 @@
#include <stdarg.h>
-#include "platform/mutex.h"
-#include "platform/semaphore.h"
-#include "globals.h"
-#include "vector.h"
+#include "src/platform/mutex.h"
+#include "src/platform/semaphore.h"
+#include "src/globals.h"
+#include "src/vector.h"
#ifdef __sun
# ifndef signbit
@@ -37,14 +37,14 @@ int signbit(double x);
#endif
#if V8_OS_QNX
-#include "qnx-math.h"
+#include "src/qnx-math.h"
#endif
// Microsoft Visual C++ specific stuff.
#if V8_LIBC_MSVCRT
-#include "win32-headers.h"
-#include "win32-math.h"
+#include "src/win32-headers.h"
+#include "src/win32-math.h"
int strncasecmp(const char* s1, const char* s2, int n);
« no previous file with comments | « src/parser.cc ('k') | src/platform-cygwin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698