| OLD | NEW |
| 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 20 matching lines...) Expand all Loading... |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "web/WebSettingsImpl.h" | 32 #include "web/WebSettingsImpl.h" |
| 33 | 33 |
| 34 #include "core/frame/Settings.h" | 34 #include "core/frame/Settings.h" |
| 35 #include "core/inspector/InspectorController.h" | 35 #include "core/inspector/InspectorController.h" |
| 36 #include "platform/graphics/DeferredImageDecoder.h" | 36 #include "platform/graphics/DeferredImageDecoder.h" |
| 37 | 37 |
| 38 #include "public/platform/WebString.h" | 38 #include "public/platform/WebString.h" |
| 39 #include "public/platform/WebURL.h" | 39 #include "public/platform/WebURL.h" |
| 40 | 40 |
| 41 using namespace blink; | |
| 42 | |
| 43 namespace blink { | 41 namespace blink { |
| 44 | 42 |
| 45 WebSettingsImpl::WebSettingsImpl(Settings* settings, InspectorController* inspec
torController) | 43 WebSettingsImpl::WebSettingsImpl(Settings* settings, InspectorController* inspec
torController) |
| 46 : m_settings(settings) | 44 : m_settings(settings) |
| 47 , m_inspectorController(inspectorController) | 45 , m_inspectorController(inspectorController) |
| 48 , m_showFPSCounter(false) | 46 , m_showFPSCounter(false) |
| 49 , m_showPaintRects(false) | 47 , m_showPaintRects(false) |
| 50 , m_renderVSyncNotificationEnabled(false) | 48 , m_renderVSyncNotificationEnabled(false) |
| 51 , m_autoZoomFocusedNodeToLegibleScale(false) | 49 , m_autoZoomFocusedNodeToLegibleScale(false) |
| 52 , m_deferredImageDecodingEnabled(false) | 50 , m_deferredImageDecodingEnabled(false) |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 m_showFPSCounter = show; | 422 m_showFPSCounter = show; |
| 425 } | 423 } |
| 426 | 424 |
| 427 void WebSettingsImpl::setShowPaintRects(bool show) | 425 void WebSettingsImpl::setShowPaintRects(bool show) |
| 428 { | 426 { |
| 429 m_showPaintRects = show; | 427 m_showPaintRects = show; |
| 430 } | 428 } |
| 431 | 429 |
| 432 void WebSettingsImpl::setEditingBehavior(EditingBehavior behavior) | 430 void WebSettingsImpl::setEditingBehavior(EditingBehavior behavior) |
| 433 { | 431 { |
| 434 m_settings->setEditingBehaviorType(static_cast<blink::EditingBehaviorType>(b
ehavior)); | 432 m_settings->setEditingBehaviorType(static_cast<EditingBehaviorType>(behavior
)); |
| 435 } | 433 } |
| 436 | 434 |
| 437 void WebSettingsImpl::setAcceleratedCompositingEnabled(bool enabled) | 435 void WebSettingsImpl::setAcceleratedCompositingEnabled(bool enabled) |
| 438 { | 436 { |
| 439 m_settings->setAcceleratedCompositingEnabled(enabled); | 437 m_settings->setAcceleratedCompositingEnabled(enabled); |
| 440 } | 438 } |
| 441 | 439 |
| 442 void WebSettingsImpl::setMockScrollbarsEnabled(bool enabled) | 440 void WebSettingsImpl::setMockScrollbarsEnabled(bool enabled) |
| 443 { | 441 { |
| 444 m_settings->setMockScrollbarsEnabled(enabled); | 442 m_settings->setMockScrollbarsEnabled(enabled); |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 { | 692 { |
| 695 m_settings->setDisallowFullscreenForNonMediaElements(enabled); | 693 m_settings->setDisallowFullscreenForNonMediaElements(enabled); |
| 696 } | 694 } |
| 697 | 695 |
| 698 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) | 696 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) |
| 699 { | 697 { |
| 700 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); | 698 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); |
| 701 } | 699 } |
| 702 | 700 |
| 703 } // namespace blink | 701 } // namespace blink |
| OLD | NEW |