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

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

Issue 564043003: Add a setting to disable threaded scrolling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: s/accelerated/threaded/ Created 6 years, 3 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') | Source/web/tests/ScrollingCoordinatorChromiumTest.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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 void WebSettingsImpl::setAllowUniversalAccessFromFileURLs(bool allow) 394 void WebSettingsImpl::setAllowUniversalAccessFromFileURLs(bool allow)
395 { 395 {
396 m_settings->setAllowUniversalAccessFromFileURLs(allow); 396 m_settings->setAllowUniversalAccessFromFileURLs(allow);
397 } 397 }
398 398
399 void WebSettingsImpl::setAllowFileAccessFromFileURLs(bool allow) 399 void WebSettingsImpl::setAllowFileAccessFromFileURLs(bool allow)
400 { 400 {
401 m_settings->setAllowFileAccessFromFileURLs(allow); 401 m_settings->setAllowFileAccessFromFileURLs(allow);
402 } 402 }
403 403
404 void WebSettingsImpl::setThreadedScrollingEnabled(bool enabled)
405 {
406 m_settings->setThreadedScrollingEnabled(enabled);
407 }
408
404 void WebSettingsImpl::setTouchDragDropEnabled(bool enabled) 409 void WebSettingsImpl::setTouchDragDropEnabled(bool enabled)
405 { 410 {
406 m_settings->setTouchDragDropEnabled(enabled); 411 m_settings->setTouchDragDropEnabled(enabled);
407 } 412 }
408 413
409 void WebSettingsImpl::setTouchEditingEnabled(bool enabled) 414 void WebSettingsImpl::setTouchEditingEnabled(bool enabled)
410 { 415 {
411 m_settings->setTouchEditingEnabled(enabled); 416 m_settings->setTouchEditingEnabled(enabled);
412 } 417 }
413 418
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 { 731 {
727 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); 732 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options));
728 } 733 }
729 734
730 void WebSettingsImpl::setV8ScriptStreamingEnabled(bool enabled) 735 void WebSettingsImpl::setV8ScriptStreamingEnabled(bool enabled)
731 { 736 {
732 m_settings->setV8ScriptStreamingEnabled(enabled); 737 m_settings->setV8ScriptStreamingEnabled(enabled);
733 } 738 }
734 739
735 } // namespace blink 740 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | Source/web/tests/ScrollingCoordinatorChromiumTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698