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

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

Issue 785333002: Delete the Layer Squashing runtime feature. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/WebRuntimeFeatures.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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 void WebSettingsImpl::setMinimumAccelerated2dCanvasSize(int numPixels) 540 void WebSettingsImpl::setMinimumAccelerated2dCanvasSize(int numPixels)
541 { 541 {
542 m_settings->setMinimumAccelerated2dCanvasSize(numPixels); 542 m_settings->setMinimumAccelerated2dCanvasSize(numPixels);
543 } 543 }
544 544
545 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled) 545 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled)
546 { 546 {
547 m_settings->setHyperlinkAuditingEnabled(enabled); 547 m_settings->setHyperlinkAuditingEnabled(enabled);
548 } 548 }
549 549
550 void WebSettingsImpl::setLayerSquashingEnabled(bool enabled)
551 {
552 m_settings->setLayerSquashingEnabled(enabled);
553 }
554
555 void WebSettingsImpl::setAsynchronousSpellCheckingEnabled(bool enabled) 550 void WebSettingsImpl::setAsynchronousSpellCheckingEnabled(bool enabled)
556 { 551 {
557 m_settings->setAsynchronousSpellCheckingEnabled(enabled); 552 m_settings->setAsynchronousSpellCheckingEnabled(enabled);
558 } 553 }
559 554
560 void WebSettingsImpl::setUnifiedTextCheckerEnabled(bool enabled) 555 void WebSettingsImpl::setUnifiedTextCheckerEnabled(bool enabled)
561 { 556 {
562 m_settings->setUnifiedTextCheckerEnabled(enabled); 557 m_settings->setUnifiedTextCheckerEnabled(enabled);
563 } 558 }
564 559
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 { 746 {
752 m_settings->setV8ScriptStreamingEnabled(enabled); 747 m_settings->setV8ScriptStreamingEnabled(enabled);
753 } 748 }
754 749
755 void WebSettingsImpl::setV8ScriptStreamingMode(V8ScriptStreamingMode mode) 750 void WebSettingsImpl::setV8ScriptStreamingMode(V8ScriptStreamingMode mode)
756 { 751 {
757 m_settings->setV8ScriptStreamingMode(static_cast<blink::ScriptStreamingMode> (mode)); 752 m_settings->setV8ScriptStreamingMode(static_cast<blink::ScriptStreamingMode> (mode));
758 } 753 }
759 754
760 } // namespace blink 755 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebRuntimeFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698