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

Side by Side Diff: Source/WTF/wtf/FeatureDefines.h

Issue 13497009: Remove ENABLE(FILE_SYSTEM) compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: added CodeGeneratorInspector.py change Created 7 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved.
3 * Copyright (C) 2007-2009 Torch Mobile, Inc. 3 * Copyright (C) 2007-2009 Torch Mobile, Inc.
4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved.
5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 #endif 193 #endif
194 194
195 #if !defined(ENABLE_ENCRYPTED_MEDIA_V2) 195 #if !defined(ENABLE_ENCRYPTED_MEDIA_V2)
196 #define ENABLE_ENCRYPTED_MEDIA_V2 0 196 #define ENABLE_ENCRYPTED_MEDIA_V2 0
197 #endif 197 #endif
198 198
199 #if !defined(ENABLE_FAST_MOBILE_SCROLLING) 199 #if !defined(ENABLE_FAST_MOBILE_SCROLLING)
200 #define ENABLE_FAST_MOBILE_SCROLLING 0 200 #define ENABLE_FAST_MOBILE_SCROLLING 0
201 #endif 201 #endif
202 202
203 #if !defined(ENABLE_FILE_SYSTEM)
204 #define ENABLE_FILE_SYSTEM 0
205 #endif
206
207 #if !defined(ENABLE_FILTERS) 203 #if !defined(ENABLE_FILTERS)
208 #define ENABLE_FILTERS 0 204 #define ENABLE_FILTERS 0
209 #endif 205 #endif
210 206
211 #if !defined(ENABLE_FONT_LOAD_EVENTS) 207 #if !defined(ENABLE_FONT_LOAD_EVENTS)
212 #define ENABLE_FONT_LOAD_EVENTS 0 208 #define ENABLE_FONT_LOAD_EVENTS 0
213 #endif 209 #endif
214 210
215 #if !defined(ENABLE_GAMEPAD) 211 #if !defined(ENABLE_GAMEPAD)
216 #define ENABLE_GAMEPAD 0 212 #define ENABLE_GAMEPAD 0
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 551
556 #if ENABLE(SVG_FONTS) && !ENABLE(SVG) 552 #if ENABLE(SVG_FONTS) && !ENABLE(SVG)
557 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)" 553 #error "ENABLE(SVG_FONTS) requires ENABLE(SVG)"
558 #endif 554 #endif
559 555
560 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO) 556 #if ENABLE(VIDEO_TRACK) && !ENABLE(VIDEO)
561 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)" 557 #error "ENABLE(VIDEO_TRACK) requires ENABLE(VIDEO)"
562 #endif 558 #endif
563 559
564 #endif /* WTF_FeatureDefines_h */ 560 #endif /* WTF_FeatureDefines_h */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698