| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 #include "core/editing/SpellCheckRequester.h" | 75 #include "core/editing/SpellCheckRequester.h" |
| 76 #include "core/editing/SpellChecker.h" | 76 #include "core/editing/SpellChecker.h" |
| 77 #include "core/editing/TextIterator.h" | 77 #include "core/editing/TextIterator.h" |
| 78 #include "core/fetch/MemoryCache.h" | 78 #include "core/fetch/MemoryCache.h" |
| 79 #include "core/fetch/ResourceFetcher.h" | 79 #include "core/fetch/ResourceFetcher.h" |
| 80 #include "core/frame/DOMPoint.h" | 80 #include "core/frame/DOMPoint.h" |
| 81 #include "core/frame/DOMWindow.h" | 81 #include "core/frame/DOMWindow.h" |
| 82 #include "core/frame/FrameView.h" | 82 #include "core/frame/FrameView.h" |
| 83 #include "core/frame/LocalFrame.h" | 83 #include "core/frame/LocalFrame.h" |
| 84 #include "core/frame/Settings.h" | 84 #include "core/frame/Settings.h" |
| 85 #include "core/html/HTMLContentElement.h" |
| 85 #include "core/html/HTMLIFrameElement.h" | 86 #include "core/html/HTMLIFrameElement.h" |
| 86 #include "core/html/HTMLInputElement.h" | 87 #include "core/html/HTMLInputElement.h" |
| 87 #include "core/html/HTMLMediaElement.h" | 88 #include "core/html/HTMLMediaElement.h" |
| 88 #include "core/html/HTMLSelectElement.h" | 89 #include "core/html/HTMLSelectElement.h" |
| 89 #include "core/html/HTMLTextAreaElement.h" | 90 #include "core/html/HTMLTextAreaElement.h" |
| 90 #include "core/html/forms/FormController.h" | 91 #include "core/html/forms/FormController.h" |
| 91 #include "core/html/shadow/HTMLContentElement.h" | |
| 92 #include "core/inspector/InspectorClient.h" | 92 #include "core/inspector/InspectorClient.h" |
| 93 #include "core/inspector/InspectorConsoleAgent.h" | 93 #include "core/inspector/InspectorConsoleAgent.h" |
| 94 #include "core/inspector/InspectorController.h" | 94 #include "core/inspector/InspectorController.h" |
| 95 #include "core/inspector/InspectorCounters.h" | 95 #include "core/inspector/InspectorCounters.h" |
| 96 #include "core/inspector/InspectorFrontendChannel.h" | 96 #include "core/inspector/InspectorFrontendChannel.h" |
| 97 #include "core/inspector/InspectorInstrumentation.h" | 97 #include "core/inspector/InspectorInstrumentation.h" |
| 98 #include "core/inspector/InspectorOverlay.h" | 98 #include "core/inspector/InspectorOverlay.h" |
| 99 #include "core/inspector/InstrumentingAgents.h" | 99 #include "core/inspector/InstrumentingAgents.h" |
| 100 #include "core/loader/FrameLoader.h" | 100 #include "core/loader/FrameLoader.h" |
| 101 #include "core/loader/HistoryItem.h" | 101 #include "core/loader/HistoryItem.h" |
| (...skipping 2279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2381 return promise.then(AddOneFunction::create(context)); | 2381 return promise.then(AddOneFunction::create(context)); |
| 2382 } | 2382 } |
| 2383 | 2383 |
| 2384 void Internals::trace(Visitor* visitor) | 2384 void Internals::trace(Visitor* visitor) |
| 2385 { | 2385 { |
| 2386 visitor->trace(m_runtimeFlags); | 2386 visitor->trace(m_runtimeFlags); |
| 2387 visitor->trace(m_profilers); | 2387 visitor->trace(m_profilers); |
| 2388 } | 2388 } |
| 2389 | 2389 |
| 2390 } | 2390 } |
| OLD | NEW |