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

Side by Side Diff: Source/web/WebSettingsImpl.cpp

Issue 217163004: Remove the fullScreenEnabled setting (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698