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

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

Issue 5534003: Part 2 of merges for Chromium bug #64589... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/597/
Patch Set: Created 10 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
« no previous file with comments | « 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 void WebSettingsImpl::setEditingBehavior(EditingBehavior behavior) 277 void WebSettingsImpl::setEditingBehavior(EditingBehavior behavior)
278 { 278 {
279 m_settings->setEditingBehaviorType(static_cast<WebCore::EditingBehaviorType> (behavior)); 279 m_settings->setEditingBehaviorType(static_cast<WebCore::EditingBehaviorType> (behavior));
280 } 280 }
281 281
282 void WebSettingsImpl::setAcceleratedCompositingEnabled(bool enabled) 282 void WebSettingsImpl::setAcceleratedCompositingEnabled(bool enabled)
283 { 283 {
284 m_settings->setAcceleratedCompositingEnabled(enabled); 284 m_settings->setAcceleratedCompositingEnabled(enabled);
285 } 285 }
286 286
287 void WebSettingsImpl::setAcceleratedCompositingFor3DTransformsEnabled(bool enabl ed)
288 {
289 m_settings->setAcceleratedCompositingFor3DTransformsEnabled(enabled);
290 }
291
292 void WebSettingsImpl::setAcceleratedCompositingForVideoEnabled(bool enabled)
293 {
294 m_settings->setAcceleratedCompositingForVideoEnabled(enabled);
295 }
296
297 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled)
298 {
299 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled);
300 }
301
302 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled)
303 {
304 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled);
305 }
306
307 void WebSettingsImpl::setAcceleratedCompositingForAnimationEnabled(bool enabled)
308 {
309 m_settings->setAcceleratedCompositingForAnimationEnabled(enabled);
310 }
311
287 void WebSettingsImpl::setAccelerated2dCanvasEnabled(bool enabled) 312 void WebSettingsImpl::setAccelerated2dCanvasEnabled(bool enabled)
288 { 313 {
289 m_settings->setAccelerated2dCanvasEnabled(enabled); 314 m_settings->setAccelerated2dCanvasEnabled(enabled);
290 } 315 }
291 316
292 void WebSettingsImpl::setMemoryInfoEnabled(bool enabled) 317 void WebSettingsImpl::setMemoryInfoEnabled(bool enabled)
293 { 318 {
294 m_settings->setMemoryInfoEnabled(enabled); 319 m_settings->setMemoryInfoEnabled(enabled);
295 } 320 }
296 321
297 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled) 322 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled)
298 { 323 {
299 m_settings->setHyperlinkAuditingEnabled(enabled); 324 m_settings->setHyperlinkAuditingEnabled(enabled);
300 } 325 }
301 326
302 void WebSettingsImpl::setCaretBrowsingEnabled(bool enabled) 327 void WebSettingsImpl::setCaretBrowsingEnabled(bool enabled)
303 { 328 {
304 m_settings->setCaretBrowsingEnabled(enabled); 329 m_settings->setCaretBrowsingEnabled(enabled);
305 } 330 }
306 331
307 } // namespace WebKit 332 } // namespace WebKit
OLDNEW
« no previous file with comments | « WebKit/chromium/src/WebSettingsImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698