| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 #include "core/dom/StyleEngine.h" | 59 #include "core/dom/StyleEngine.h" |
| 60 #include "core/dom/TreeScope.h" | 60 #include "core/dom/TreeScope.h" |
| 61 #include "core/dom/ViewportDescription.h" | 61 #include "core/dom/ViewportDescription.h" |
| 62 #include "core/dom/shadow/ComposedTreeTraversal.h" | 62 #include "core/dom/shadow/ComposedTreeTraversal.h" |
| 63 #include "core/dom/shadow/ElementShadow.h" | 63 #include "core/dom/shadow/ElementShadow.h" |
| 64 #include "core/dom/shadow/SelectRuleFeatureSet.h" | 64 #include "core/dom/shadow/SelectRuleFeatureSet.h" |
| 65 #include "core/dom/shadow/ShadowRoot.h" | 65 #include "core/dom/shadow/ShadowRoot.h" |
| 66 #include "core/editing/Editor.h" | 66 #include "core/editing/Editor.h" |
| 67 #include "core/editing/PlainTextRange.h" | 67 #include "core/editing/PlainTextRange.h" |
| 68 #include "core/editing/Serialization.h" | 68 #include "core/editing/Serialization.h" |
| 69 #include "core/editing/SpellCheckRequester.h" | |
| 70 #include "core/editing/SpellChecker.h" | |
| 71 #include "core/editing/SurroundingText.h" | 69 #include "core/editing/SurroundingText.h" |
| 72 #include "core/editing/iterators/TextIterator.h" | 70 #include "core/editing/iterators/TextIterator.h" |
| 73 #include "core/editing/markers/DocumentMarker.h" | 71 #include "core/editing/markers/DocumentMarker.h" |
| 74 #include "core/editing/markers/DocumentMarkerController.h" | 72 #include "core/editing/markers/DocumentMarkerController.h" |
| 73 #include "core/editing/spellcheck/SpellCheckRequester.h" |
| 74 #include "core/editing/spellcheck/SpellChecker.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" |
| 78 #include "core/frame/FrameConsole.h" | 78 #include "core/frame/FrameConsole.h" |
| 79 #include "core/frame/FrameView.h" | 79 #include "core/frame/FrameView.h" |
| 80 #include "core/frame/LocalDOMWindow.h" | 80 #include "core/frame/LocalDOMWindow.h" |
| 81 #include "core/frame/LocalFrame.h" | 81 #include "core/frame/LocalFrame.h" |
| 82 #include "core/frame/Settings.h" | 82 #include "core/frame/Settings.h" |
| 83 #include "core/html/HTMLContentElement.h" | 83 #include "core/html/HTMLContentElement.h" |
| 84 #include "core/html/HTMLIFrameElement.h" | 84 #include "core/html/HTMLIFrameElement.h" |
| (...skipping 2390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2475 | 2475 |
| 2476 return animator->setScrollbarsVisibleForTesting(visible); | 2476 return animator->setScrollbarsVisibleForTesting(visible); |
| 2477 } | 2477 } |
| 2478 | 2478 |
| 2479 void Internals::forceRestrictIFramePermissions() | 2479 void Internals::forceRestrictIFramePermissions() |
| 2480 { | 2480 { |
| 2481 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); | 2481 RuntimeEnabledFeatures::setRestrictIFramePermissionsEnabled(true); |
| 2482 } | 2482 } |
| 2483 | 2483 |
| 2484 } // namespace blink | 2484 } // namespace blink |
| OLD | NEW |