| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 #include "core/html/canvas/CanvasRenderingContext.h" | 92 #include "core/html/canvas/CanvasRenderingContext.h" |
| 93 #include "core/html/forms/FormController.h" | 93 #include "core/html/forms/FormController.h" |
| 94 #include "core/html/shadow/PluginPlaceholderElement.h" | 94 #include "core/html/shadow/PluginPlaceholderElement.h" |
| 95 #include "core/html/shadow/ShadowElementNames.h" | 95 #include "core/html/shadow/ShadowElementNames.h" |
| 96 #include "core/html/shadow/TextControlInnerElements.h" | 96 #include "core/html/shadow/TextControlInnerElements.h" |
| 97 #include "core/input/EventHandler.h" | 97 #include "core/input/EventHandler.h" |
| 98 #include "core/inspector/ConsoleMessageStorage.h" | 98 #include "core/inspector/ConsoleMessageStorage.h" |
| 99 #include "core/inspector/InspectorConsoleAgent.h" | 99 #include "core/inspector/InspectorConsoleAgent.h" |
| 100 #include "core/inspector/InspectorFrontendChannel.h" | 100 #include "core/inspector/InspectorFrontendChannel.h" |
| 101 #include "core/inspector/InspectorInstrumentation.h" | 101 #include "core/inspector/InspectorInstrumentation.h" |
| 102 #include "core/inspector/InspectorOverlay.h" | |
| 103 #include "core/inspector/InstanceCounters.h" | 102 #include "core/inspector/InstanceCounters.h" |
| 104 #include "core/inspector/InstrumentingAgents.h" | 103 #include "core/inspector/InstrumentingAgents.h" |
| 105 #include "core/layout/LayoutMenuList.h" | 104 #include "core/layout/LayoutMenuList.h" |
| 106 #include "core/layout/LayoutObject.h" | 105 #include "core/layout/LayoutObject.h" |
| 107 #include "core/layout/LayoutTreeAsText.h" | 106 #include "core/layout/LayoutTreeAsText.h" |
| 108 #include "core/layout/LayoutView.h" | 107 #include "core/layout/LayoutView.h" |
| 109 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h" | 108 #include "core/layout/compositing/CompositedDeprecatedPaintLayerMapping.h" |
| 110 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" | 109 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" |
| 111 #include "core/loader/FrameLoader.h" | 110 #include "core/loader/FrameLoader.h" |
| 112 #include "core/loader/HistoryItem.h" | 111 #include "core/loader/HistoryItem.h" |
| (...skipping 2366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2479 | 2478 |
| 2480 return animator->setScrollbarsVisibleForTesting(visible); | 2479 return animator->setScrollbarsVisibleForTesting(visible); |
| 2481 } | 2480 } |
| 2482 | 2481 |
| 2483 void Internals::forceRestrictIFramePermissions() | 2482 void Internals::forceRestrictIFramePermissions() |
| 2484 { | 2483 { |
| 2485 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); | 2484 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); |
| 2486 } | 2485 } |
| 2487 | 2486 |
| 2488 } // namespace blink | 2487 } // namespace blink |
| OLD | NEW |