| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 | 381 |
| 382 bool WebRuntimeFeatures::isNotificationsEnabled() | 382 bool WebRuntimeFeatures::isNotificationsEnabled() |
| 383 { | 383 { |
| 384 #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS) | 384 #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS) |
| 385 return RuntimeEnabledFeatures::notificationsEnabled(); | 385 return RuntimeEnabledFeatures::notificationsEnabled(); |
| 386 #else | 386 #else |
| 387 return false; | 387 return false; |
| 388 #endif | 388 #endif |
| 389 } | 389 } |
| 390 | 390 |
| 391 void WebRuntimeFeatures::enablePagePopup(bool enable) |
| 392 { |
| 393 RuntimeEnabledFeatures::setPagePopupEnabled(enable); |
| 394 } |
| 395 |
| 396 bool WebRuntimeFeatures::isPagePopupEnabled() |
| 397 { |
| 398 return RuntimeEnabledFeatures::pagePopupEnabled(); |
| 399 } |
| 400 |
| 391 void WebRuntimeFeatures::enablePeerConnection(bool enable) | 401 void WebRuntimeFeatures::enablePeerConnection(bool enable) |
| 392 { | 402 { |
| 393 RuntimeEnabledFeatures::setPeerConnectionEnabled(enable); | 403 RuntimeEnabledFeatures::setPeerConnectionEnabled(enable); |
| 394 } | 404 } |
| 395 | 405 |
| 396 bool WebRuntimeFeatures::isPeerConnectionEnabled() | 406 bool WebRuntimeFeatures::isPeerConnectionEnabled() |
| 397 { | 407 { |
| 398 return RuntimeEnabledFeatures::peerConnectionEnabled(); | 408 return RuntimeEnabledFeatures::peerConnectionEnabled(); |
| 399 } | 409 } |
| 400 | 410 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 { | 532 { |
| 523 RuntimeEnabledFeatures::setWebPInAcceptHeaderEnabled(enable); | 533 RuntimeEnabledFeatures::setWebPInAcceptHeaderEnabled(enable); |
| 524 } | 534 } |
| 525 | 535 |
| 526 bool WebRuntimeFeatures::isWebPInAcceptHeaderEnabled() | 536 bool WebRuntimeFeatures::isWebPInAcceptHeaderEnabled() |
| 527 { | 537 { |
| 528 return RuntimeEnabledFeatures::webPInAcceptHeaderEnabled(); | 538 return RuntimeEnabledFeatures::webPInAcceptHeaderEnabled(); |
| 529 } | 539 } |
| 530 | 540 |
| 531 } // namespace WebKit | 541 } // namespace WebKit |
| OLD | NEW |