| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/css/StyleSheetContents.h" | 42 #include "core/css/StyleSheetContents.h" |
| 43 #include "core/css/resolver/StyleResolver.h" | 43 #include "core/css/resolver/StyleResolver.h" |
| 44 #include "core/css/resolver/StyleResolverStats.h" | 44 #include "core/css/resolver/StyleResolverStats.h" |
| 45 #include "core/css/resolver/ViewportStyleResolver.h" | 45 #include "core/css/resolver/ViewportStyleResolver.h" |
| 46 #include "core/dom/ClientRect.h" | 46 #include "core/dom/ClientRect.h" |
| 47 #include "core/dom/ClientRectList.h" | 47 #include "core/dom/ClientRectList.h" |
| 48 #include "core/dom/DOMArrayBuffer.h" | 48 #include "core/dom/DOMArrayBuffer.h" |
| 49 #include "core/dom/DOMPoint.h" | 49 #include "core/dom/DOMPoint.h" |
| 50 #include "core/dom/DOMStringList.h" | 50 #include "core/dom/DOMStringList.h" |
| 51 #include "core/dom/Document.h" | 51 #include "core/dom/Document.h" |
| 52 #include "core/dom/DocumentMarker.h" | |
| 53 #include "core/dom/DocumentMarkerController.h" | |
| 54 #include "core/dom/Element.h" | 52 #include "core/dom/Element.h" |
| 55 #include "core/dom/ExceptionCode.h" | 53 #include "core/dom/ExceptionCode.h" |
| 56 #include "core/dom/Iterator.h" | 54 #include "core/dom/Iterator.h" |
| 57 #include "core/dom/NodeComputedStyle.h" | 55 #include "core/dom/NodeComputedStyle.h" |
| 58 #include "core/dom/PseudoElement.h" | 56 #include "core/dom/PseudoElement.h" |
| 59 #include "core/dom/Range.h" | 57 #include "core/dom/Range.h" |
| 60 #include "core/dom/StaticNodeList.h" | 58 #include "core/dom/StaticNodeList.h" |
| 61 #include "core/dom/StyleEngine.h" | 59 #include "core/dom/StyleEngine.h" |
| 62 #include "core/dom/TreeScope.h" | 60 #include "core/dom/TreeScope.h" |
| 63 #include "core/dom/ViewportDescription.h" | 61 #include "core/dom/ViewportDescription.h" |
| 64 #include "core/dom/shadow/ComposedTreeTraversal.h" | 62 #include "core/dom/shadow/ComposedTreeTraversal.h" |
| 65 #include "core/dom/shadow/ElementShadow.h" | 63 #include "core/dom/shadow/ElementShadow.h" |
| 66 #include "core/dom/shadow/SelectRuleFeatureSet.h" | 64 #include "core/dom/shadow/SelectRuleFeatureSet.h" |
| 67 #include "core/dom/shadow/ShadowRoot.h" | 65 #include "core/dom/shadow/ShadowRoot.h" |
| 66 #include "core/editing/DocumentMarker.h" |
| 67 #include "core/editing/DocumentMarkerController.h" |
| 68 #include "core/editing/Editor.h" | 68 #include "core/editing/Editor.h" |
| 69 #include "core/editing/PlainTextRange.h" | 69 #include "core/editing/PlainTextRange.h" |
| 70 #include "core/editing/Serialization.h" | 70 #include "core/editing/Serialization.h" |
| 71 #include "core/editing/SpellCheckRequester.h" | 71 #include "core/editing/SpellCheckRequester.h" |
| 72 #include "core/editing/SpellChecker.h" | 72 #include "core/editing/SpellChecker.h" |
| 73 #include "core/editing/SurroundingText.h" | 73 #include "core/editing/SurroundingText.h" |
| 74 #include "core/editing/iterators/TextIterator.h" | 74 #include "core/editing/iterators/TextIterator.h" |
| 75 #include "core/fetch/MemoryCache.h" | 75 #include "core/fetch/MemoryCache.h" |
| 76 #include "core/fetch/ResourceFetcher.h" | 76 #include "core/fetch/ResourceFetcher.h" |
| 77 #include "core/frame/EventHandlerRegistry.h" | 77 #include "core/frame/EventHandlerRegistry.h" |
| (...skipping 2403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2481 | 2481 |
| 2482 return animator->setScrollbarsVisibleForTesting(visible); | 2482 return animator->setScrollbarsVisibleForTesting(visible); |
| 2483 } | 2483 } |
| 2484 | 2484 |
| 2485 void Internals::forceRestrictIFramePermissions() | 2485 void Internals::forceRestrictIFramePermissions() |
| 2486 { | 2486 { |
| 2487 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); | 2487 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); |
| 2488 } | 2488 } |
| 2489 | 2489 |
| 2490 } // namespace blink | 2490 } // namespace blink |
| OLD | NEW |