OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
576 void WebSettingsImpl::setCaretBrowsingEnabled(bool enabled) | 576 void WebSettingsImpl::setCaretBrowsingEnabled(bool enabled) |
577 { | 577 { |
578 m_settings->setCaretBrowsingEnabled(enabled); | 578 m_settings->setCaretBrowsingEnabled(enabled); |
579 } | 579 } |
580 | 580 |
581 void WebSettingsImpl::setValidationMessageTimerMagnification(int newValue) | 581 void WebSettingsImpl::setValidationMessageTimerMagnification(int newValue) |
582 { | 582 { |
583 m_settings->setValidationMessageTimerMagnification(newValue); | 583 m_settings->setValidationMessageTimerMagnification(newValue); |
584 } | 584 } |
585 | 585 |
586 void WebSettingsImpl::setFullScreenEnabled(bool enabled) | |
587 { | |
588 m_settings->setFullScreenEnabled(enabled); | |
589 } | |
590 | |
591 void WebSettingsImpl::setAllowDisplayOfInsecureContent(bool enabled) | 586 void WebSettingsImpl::setAllowDisplayOfInsecureContent(bool enabled) |
592 { | 587 { |
593 m_settings->setAllowDisplayOfInsecureContent(enabled); | 588 m_settings->setAllowDisplayOfInsecureContent(enabled); |
594 } | 589 } |
595 | 590 |
596 void WebSettingsImpl::setAllowRunningOfInsecureContent(bool enabled) | 591 void WebSettingsImpl::setAllowRunningOfInsecureContent(bool enabled) |
597 { | 592 { |
598 m_settings->setAllowRunningOfInsecureContent(enabled); | 593 m_settings->setAllowRunningOfInsecureContent(enabled); |
599 } | 594 } |
600 | 595 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 { | 742 { |
748 m_settings->setUseSolidColorScrollbars(enabled); | 743 m_settings->setUseSolidColorScrollbars(enabled); |
749 } | 744 } |
750 | 745 |
751 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) | 746 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) |
752 { | 747 { |
753 m_mainFrameResizesAreOrientationChanges = enabled; | 748 m_mainFrameResizesAreOrientationChanges = enabled; |
754 } | 749 } |
755 | 750 |
756 } // namespace blink | 751 } // namespace blink |
OLD | NEW |