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

Side by Side Diff: third_party/WebKit/JavaScriptCore/wtf/Platform.h

Issue 6315: Allow HAVE_ACCESSIBILITY to be turned off at build time (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/WebKit/WebCore/page/AccessibilityRenderObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 260
261 #if PLATFORM(WIN) 261 #if PLATFORM(WIN)
262 #define WTF_USE_WININET 1 262 #define WTF_USE_WININET 1
263 #endif 263 #endif
264 264
265 #if PLATFORM(WX) 265 #if PLATFORM(WX)
266 #define WTF_USE_CURL 1 266 #define WTF_USE_CURL 1
267 #define WTF_USE_PTHREADS 1 267 #define WTF_USE_PTHREADS 1
268 #endif 268 #endif
269 269
270 // allow build settings to override HAVE_ACCESSIBILITY
271 #if !defined(HAVE_ACCESSIBILITY)
270 #if PLATFORM(MAC) || PLATFORM(WIN) || PLATFORM(GTK) 272 #if PLATFORM(MAC) || PLATFORM(WIN) || PLATFORM(GTK)
271 #define HAVE_ACCESSIBILITY 1 273 #define HAVE_ACCESSIBILITY 1
272 #endif 274 #endif
275 #endif
273 276
274 #if COMPILER(GCC) 277 #if COMPILER(GCC)
275 #define HAVE_COMPUTED_GOTO 1 278 #define HAVE_COMPUTED_GOTO 1
276 #endif 279 #endif
277 280
278 #if PLATFORM(DARWIN) 281 #if PLATFORM(DARWIN)
279 282
280 #define HAVE_ERRNO_H 1 283 #define HAVE_ERRNO_H 1
281 #define HAVE_MMAP 1 284 #define HAVE_MMAP 1
282 #define HAVE_MERGESORT 1 285 #define HAVE_MERGESORT 1
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 336
334 #if !defined(ENABLE_DASHBOARD_SUPPORT) 337 #if !defined(ENABLE_DASHBOARD_SUPPORT)
335 #define ENABLE_DASHBOARD_SUPPORT 0 338 #define ENABLE_DASHBOARD_SUPPORT 0
336 #endif 339 #endif
337 340
338 #if !defined(ENABLE_SAMPLING_TOOL) 341 #if !defined(ENABLE_SAMPLING_TOOL)
339 #define ENABLE_SAMPLING_TOOL 0 342 #define ENABLE_SAMPLING_TOOL 0
340 #endif 343 #endif
341 344
342 #endif /* WTF_Platform_h */ 345 #endif /* WTF_Platform_h */
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/WebCore/page/AccessibilityRenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698