| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 #include "core/dom/Node.h" | 102 #include "core/dom/Node.h" |
| 103 #include "core/dom/NodeTraversal.h" | 103 #include "core/dom/NodeTraversal.h" |
| 104 #include "core/dom/SuspendableTask.h" | 104 #include "core/dom/SuspendableTask.h" |
| 105 #include "core/dom/shadow/ShadowRoot.h" | 105 #include "core/dom/shadow/ShadowRoot.h" |
| 106 #include "core/editing/EditingUtilities.h" | 106 #include "core/editing/EditingUtilities.h" |
| 107 #include "core/editing/Editor.h" | 107 #include "core/editing/Editor.h" |
| 108 #include "core/editing/FrameSelection.h" | 108 #include "core/editing/FrameSelection.h" |
| 109 #include "core/editing/InputMethodController.h" | 109 #include "core/editing/InputMethodController.h" |
| 110 #include "core/editing/PlainTextRange.h" | 110 #include "core/editing/PlainTextRange.h" |
| 111 #include "core/editing/Serialization.h" | 111 #include "core/editing/Serialization.h" |
| 112 #include "core/editing/SpellChecker.h" | |
| 113 #include "core/editing/TextAffinity.h" | 112 #include "core/editing/TextAffinity.h" |
| 114 #include "core/editing/iterators/TextIterator.h" | 113 #include "core/editing/iterators/TextIterator.h" |
| 114 #include "core/editing/spellcheck/SpellChecker.h" |
| 115 #include "core/fetch/ResourceFetcher.h" | 115 #include "core/fetch/ResourceFetcher.h" |
| 116 #include "core/fetch/SubstituteData.h" | 116 #include "core/fetch/SubstituteData.h" |
| 117 #include "core/frame/Console.h" | 117 #include "core/frame/Console.h" |
| 118 #include "core/frame/LocalDOMWindow.h" | 118 #include "core/frame/LocalDOMWindow.h" |
| 119 #include "core/frame/FrameHost.h" | 119 #include "core/frame/FrameHost.h" |
| 120 #include "core/frame/FrameView.h" | 120 #include "core/frame/FrameView.h" |
| 121 #include "core/frame/Settings.h" | 121 #include "core/frame/Settings.h" |
| 122 #include "core/html/HTMLAnchorElement.h" | 122 #include "core/html/HTMLAnchorElement.h" |
| 123 #include "core/html/HTMLCollection.h" | 123 #include "core/html/HTMLCollection.h" |
| 124 #include "core/html/HTMLFormElement.h" | 124 #include "core/html/HTMLFormElement.h" |
| (...skipping 2081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2206 } | 2206 } |
| 2207 | 2207 |
| 2208 WebSandboxFlags WebLocalFrameImpl::effectiveSandboxFlags() const | 2208 WebSandboxFlags WebLocalFrameImpl::effectiveSandboxFlags() const |
| 2209 { | 2209 { |
| 2210 if (!frame()) | 2210 if (!frame()) |
| 2211 return WebSandboxFlags::None; | 2211 return WebSandboxFlags::None; |
| 2212 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags(
)); | 2212 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags(
)); |
| 2213 } | 2213 } |
| 2214 | 2214 |
| 2215 } // namespace blink | 2215 } // namespace blink |
| OLD | NEW |