| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; | 92 bool RuntimeEnabledFeatures::isDialogElementEnabled = false; |
| 93 bool RuntimeEnabledFeatures::isLazyLayoutEnabled = false; | 93 bool RuntimeEnabledFeatures::isLazyLayoutEnabled = false; |
| 94 bool RuntimeEnabledFeatures::isExperimentalContentSecurityPolicyFeaturesEnabled
= false; | 94 bool RuntimeEnabledFeatures::isExperimentalContentSecurityPolicyFeaturesEnabled
= false; |
| 95 bool RuntimeEnabledFeatures::isSeamlessIFramesEnabled = false; | 95 bool RuntimeEnabledFeatures::isSeamlessIFramesEnabled = false; |
| 96 bool RuntimeEnabledFeatures::isLangAttributeAwareFormControlUIEnabled = false; | 96 bool RuntimeEnabledFeatures::isLangAttributeAwareFormControlUIEnabled = false; |
| 97 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; | 97 bool RuntimeEnabledFeatures::isRequestAutocompleteEnabled = false; |
| 98 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false; | 98 bool RuntimeEnabledFeatures::isWebPInAcceptHeaderEnabled = false; |
| 99 bool RuntimeEnabledFeatures::isDirectoryUploadEnabled = true; | 99 bool RuntimeEnabledFeatures::isDirectoryUploadEnabled = true; |
| 100 bool RuntimeEnabledFeatures::isExperimentalWebSocketEnabled = false; | 100 bool RuntimeEnabledFeatures::isExperimentalWebSocketEnabled = false; |
| 101 bool RuntimeEnabledFeatures::isIMEAPIEnabled = false; | 101 bool RuntimeEnabledFeatures::isIMEAPIEnabled = false; |
| 102 bool RuntimeEnabledFeatures::isSpeechSynthesisEnabled = false; |
| 102 | 103 |
| 103 bool RuntimeEnabledFeatures::mediaEnabled() | 104 bool RuntimeEnabledFeatures::mediaEnabled() |
| 104 { | 105 { |
| 105 return MediaPlayer::isAvailable(); | 106 return MediaPlayer::isAvailable(); |
| 106 } | 107 } |
| 107 | 108 |
| 108 bool RuntimeEnabledFeatures::sharedWorkerEnabled() | 109 bool RuntimeEnabledFeatures::sharedWorkerEnabled() |
| 109 { | 110 { |
| 110 return SharedWorkerRepository::isAvailable(); | 111 return SharedWorkerRepository::isAvailable(); |
| 111 } | 112 } |
| 112 | 113 |
| 113 } // namespace WebCore | 114 } // namespace WebCore |
| OLD | NEW |