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

Side by Side Diff: Tools/Scripts/webkitperl/FeatureList.pm

Issue 13646006: Remove the ENABLE_IFRAME_SEAMLESS compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 # Copyright (C) 2012 Google Inc. All rights reserved. 1 # Copyright (C) 2012 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 274
275 { option => "geolocation", desc => "Toggle Geolocation support", 275 { option => "geolocation", desc => "Toggle Geolocation support",
276 define => "ENABLE_GEOLOCATION", default => (isAppleWebKit() || isGtk() || isBlackBerry()), value => \$geolocationSupport }, 276 define => "ENABLE_GEOLOCATION", default => (isAppleWebKit() || isGtk() || isBlackBerry()), value => \$geolocationSupport },
277 277
278 { option => "high-dpi-canvas", desc => "Toggle High DPI Canvas support", 278 { option => "high-dpi-canvas", desc => "Toggle High DPI Canvas support",
279 define => "ENABLE_HIGH_DPI_CANVAS", default => (isAppleWebKit()), value => \$highDPICanvasSupport }, 279 define => "ENABLE_HIGH_DPI_CANVAS", default => (isAppleWebKit()), value => \$highDPICanvasSupport },
280 280
281 { option => "icon-database", desc => "Toggle Icondatabase support", 281 { option => "icon-database", desc => "Toggle Icondatabase support",
282 define => "ENABLE_ICONDATABASE", default => 1, value => \$icondatabaseSupp ort }, 282 define => "ENABLE_ICONDATABASE", default => 1, value => \$icondatabaseSupp ort },
283 283
284 { option => "iframe-seamless", desc => "Toggle iframe seamless attribute sup port",
285 define => "ENABLE_IFRAME_SEAMLESS", default => 1, value => \$iframeSeamles sSupport },
286
287 { option => "indexed-database", desc => "Toggle Indexed Database support", 284 { option => "indexed-database", desc => "Toggle Indexed Database support",
288 define => "ENABLE_INDEXED_DATABASE", default => isGtk(), value => \$indexe dDatabaseSupport }, 285 define => "ENABLE_INDEXED_DATABASE", default => isGtk(), value => \$indexe dDatabaseSupport },
289 286
290 { option => "input-speech", desc => "Toggle Input Speech support", 287 { option => "input-speech", desc => "Toggle Input Speech support",
291 define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSuppo rt }, 288 define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSuppo rt },
292 289
293 { option => "input-type-color", desc => "Toggle Input Type Color support", 290 { option => "input-type-color", desc => "Toggle Input Type Color support",
294 define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl() || isQt()), value => \$inputTypeColorSupport }, 291 define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl() || isQt()), value => \$inputTypeColorSupport },
295 292
296 { option => "input-type-date", desc => "Toggle Input Type Date support", 293 { option => "input-type-date", desc => "Toggle Input Type Date support",
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 { option => "xslt", desc => "Toggle XSLT support", 482 { option => "xslt", desc => "Toggle XSLT support",
486 define => "ENABLE_XSLT", default => 1, value => \$xsltSupport }, 483 define => "ENABLE_XSLT", default => 1, value => \$xsltSupport },
487 ); 484 );
488 485
489 sub getFeatureOptionList() 486 sub getFeatureOptionList()
490 { 487 {
491 return @features; 488 return @features;
492 } 489 }
493 490
494 1; 491 1;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698