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

Side by Side Diff: Source/WebKit/chromium/src/WebSettingsImpl.cpp

Issue 13811041: expose spatial navigation to chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 7 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/WebKit/chromium/src/WebSettingsImpl.h ('k') | no next file » | 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 void WebSettingsImpl::setNeedsSiteSpecificQuirks(bool enabled) 216 void WebSettingsImpl::setNeedsSiteSpecificQuirks(bool enabled)
217 { 217 {
218 m_settings->setNeedsSiteSpecificQuirks(enabled); 218 m_settings->setNeedsSiteSpecificQuirks(enabled);
219 } 219 }
220 220
221 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages) 221 void WebSettingsImpl::setShrinksStandaloneImagesToFit(bool shrinkImages)
222 { 222 {
223 m_settings->setShrinksStandaloneImagesToFit(shrinkImages); 223 m_settings->setShrinksStandaloneImagesToFit(shrinkImages);
224 } 224 }
225 225
226 void WebSettingsImpl::setSpatialNavigationEnabled(bool enabled)
227 {
228 m_settings->setSpatialNavigationEnabled(enabled);
229 }
230
226 void WebSettingsImpl::setUsesEncodingDetector(bool usesDetector) 231 void WebSettingsImpl::setUsesEncodingDetector(bool usesDetector)
227 { 232 {
228 m_settings->setUsesEncodingDetector(usesDetector); 233 m_settings->setUsesEncodingDetector(usesDetector);
229 } 234 }
230 235
231 void WebSettingsImpl::setTextAreasAreResizable(bool areResizable) 236 void WebSettingsImpl::setTextAreasAreResizable(bool areResizable)
232 { 237 {
233 m_settings->setTextAreasAreResizable(areResizable); 238 m_settings->setTextAreasAreResizable(areResizable);
234 } 239 }
235 240
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 { 695 {
691 m_settings->setSelectionIncludesAltImageText(enabled); 696 m_settings->setSelectionIncludesAltImageText(enabled);
692 } 697 }
693 698
694 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) 699 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled)
695 { 700 {
696 m_settings->setSmartInsertDeleteEnabled(enabled); 701 m_settings->setSmartInsertDeleteEnabled(enabled);
697 } 702 }
698 703
699 } // namespace WebKit 704 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698