| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 #include "core/dom/shadow/ShadowRoot.h" | 69 #include "core/dom/shadow/ShadowRoot.h" |
| 70 #include "core/editing/Editor.h" | 70 #include "core/editing/Editor.h" |
| 71 #include "core/editing/PlainTextRange.h" | 71 #include "core/editing/PlainTextRange.h" |
| 72 #include "core/editing/SpellCheckRequester.h" | 72 #include "core/editing/SpellCheckRequester.h" |
| 73 #include "core/editing/SpellChecker.h" | 73 #include "core/editing/SpellChecker.h" |
| 74 #include "core/editing/SurroundingText.h" | 74 #include "core/editing/SurroundingText.h" |
| 75 #include "core/editing/TextIterator.h" | 75 #include "core/editing/TextIterator.h" |
| 76 #include "core/fetch/MemoryCache.h" | 76 #include "core/fetch/MemoryCache.h" |
| 77 #include "core/fetch/ResourceFetcher.h" | 77 #include "core/fetch/ResourceFetcher.h" |
| 78 #include "core/frame/DOMPoint.h" | 78 #include "core/frame/DOMPoint.h" |
| 79 #include "core/frame/DOMWindow.h" | 79 #include "core/frame/LocalDOMWindow.h" |
| 80 #include "core/frame/EventHandlerRegistry.h" | 80 #include "core/frame/EventHandlerRegistry.h" |
| 81 #include "core/frame/FrameView.h" | 81 #include "core/frame/FrameView.h" |
| 82 #include "core/frame/LocalFrame.h" | 82 #include "core/frame/LocalFrame.h" |
| 83 #include "core/frame/Settings.h" | 83 #include "core/frame/Settings.h" |
| 84 #include "core/html/HTMLContentElement.h" | 84 #include "core/html/HTMLContentElement.h" |
| 85 #include "core/html/HTMLIFrameElement.h" | 85 #include "core/html/HTMLIFrameElement.h" |
| 86 #include "core/html/HTMLInputElement.h" | 86 #include "core/html/HTMLInputElement.h" |
| 87 #include "core/html/HTMLMediaElement.h" | 87 #include "core/html/HTMLMediaElement.h" |
| 88 #include "core/html/HTMLSelectElement.h" | 88 #include "core/html/HTMLSelectElement.h" |
| 89 #include "core/html/HTMLTextAreaElement.h" | 89 #include "core/html/HTMLTextAreaElement.h" |
| (...skipping 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2358 } else if (type == "none") { | 2358 } else if (type == "none") { |
| 2359 webtype = blink::ConnectionTypeNone; | 2359 webtype = blink::ConnectionTypeNone; |
| 2360 } else { | 2360 } else { |
| 2361 exceptionState.throwDOMException(NotFoundError, ExceptionMessages::faile
dToEnumerate("connection type", type)); | 2361 exceptionState.throwDOMException(NotFoundError, ExceptionMessages::faile
dToEnumerate("connection type", type)); |
| 2362 return; | 2362 return; |
| 2363 } | 2363 } |
| 2364 networkStateNotifier().setWebConnectionTypeForTest(webtype); | 2364 networkStateNotifier().setWebConnectionTypeForTest(webtype); |
| 2365 } | 2365 } |
| 2366 | 2366 |
| 2367 } // namespace WebCore | 2367 } // namespace WebCore |
| OLD | NEW |