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

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

Issue 1031833004: Remove allowConnectingInsecureWebSocket Settings item (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed build Created 5 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
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebSettings.h » ('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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 void WebSettingsImpl::setStrictMixedContentChecking(bool enabled) 610 void WebSettingsImpl::setStrictMixedContentChecking(bool enabled)
611 { 611 {
612 m_settings->setStrictMixedContentChecking(enabled); 612 m_settings->setStrictMixedContentChecking(enabled);
613 } 613 }
614 614
615 void WebSettingsImpl::setStrictPowerfulFeatureRestrictions(bool enabled) 615 void WebSettingsImpl::setStrictPowerfulFeatureRestrictions(bool enabled)
616 { 616 {
617 m_settings->setStrictPowerfulFeatureRestrictions(enabled); 617 m_settings->setStrictPowerfulFeatureRestrictions(enabled);
618 } 618 }
619 619
620 void WebSettingsImpl::setAllowConnectingInsecureWebSocket(bool enabled)
621 {
622 m_settings->setAllowConnectingInsecureWebSocket(enabled);
623 }
624
625 void WebSettingsImpl::setPasswordEchoEnabled(bool flag) 620 void WebSettingsImpl::setPasswordEchoEnabled(bool flag)
626 { 621 {
627 m_settings->setPasswordEchoEnabled(flag); 622 m_settings->setPasswordEchoEnabled(flag);
628 } 623 }
629 624
630 void WebSettingsImpl::setPasswordEchoDurationInSeconds(double durationInSeconds) 625 void WebSettingsImpl::setPasswordEchoDurationInSeconds(double durationInSeconds)
631 { 626 {
632 m_settings->setPasswordEchoDurationInSeconds(durationInSeconds); 627 m_settings->setPasswordEchoDurationInSeconds(durationInSeconds);
633 } 628 }
634 629
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 { 776 {
782 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); 777 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options));
783 } 778 }
784 779
785 void WebSettingsImpl::setUseMobileViewportStyle(bool enabled) 780 void WebSettingsImpl::setUseMobileViewportStyle(bool enabled)
786 { 781 {
787 m_devToolsEmulator->setUseMobileViewportStyle(enabled); 782 m_devToolsEmulator->setUseMobileViewportStyle(enabled);
788 } 783 }
789 784
790 } // namespace blink 785 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698