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

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

Issue 453813003: Remove the needsSiteSpecificQuirks setting (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 4 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') | 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 void WebSettingsImpl::setPluginsEnabled(bool enabled) 252 void WebSettingsImpl::setPluginsEnabled(bool enabled)
253 { 253 {
254 m_settings->setPluginsEnabled(enabled); 254 m_settings->setPluginsEnabled(enabled);
255 } 255 }
256 256
257 void WebSettingsImpl::setDOMPasteAllowed(bool enabled) 257 void WebSettingsImpl::setDOMPasteAllowed(bool enabled)
258 { 258 {
259 m_settings->setDOMPasteAllowed(enabled); 259 m_settings->setDOMPasteAllowed(enabled);
260 } 260 }
261 261
262 void WebSettingsImpl::setNeedsSiteSpecificQuirks(bool enabled)
263 {
264 m_settings->setNeedsSiteSpecificQuirks(enabled);
265 }
266
267 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages) 262 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages)
268 { 263 {
269 m_settings->setShrinksStandaloneImagesToFit(shrinkImages); 264 m_settings->setShrinksStandaloneImagesToFit(shrinkImages);
270 } 265 }
271 266
272 void WebSettingsImpl::setShrinksViewportContentToFit(bool shrinkViewportContent) 267 void WebSettingsImpl::setShrinksViewportContentToFit(bool shrinkViewportContent)
273 { 268 {
274 m_shrinksViewportContentToFit = shrinkViewportContent; 269 m_shrinksViewportContentToFit = shrinkViewportContent;
275 } 270 }
276 271
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 { 689 {
695 m_settings->setDisallowFullscreenForNonMediaElements(enabled); 690 m_settings->setDisallowFullscreenForNonMediaElements(enabled);
696 } 691 }
697 692
698 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) 693 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options)
699 { 694 {
700 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); 695 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options));
701 } 696 }
702 697
703 } // namespace blink 698 } // 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