| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 #include "core/inspector/InjectedScriptManager.h" | 64 #include "core/inspector/InjectedScriptManager.h" |
| 65 #include "core/inspector/InspectorHistory.h" | 65 #include "core/inspector/InspectorHistory.h" |
| 66 #include "core/inspector/InspectorOverlay.h" | 66 #include "core/inspector/InspectorOverlay.h" |
| 67 #include "core/inspector/InspectorPageAgent.h" | 67 #include "core/inspector/InspectorPageAgent.h" |
| 68 #include "core/inspector/InspectorState.h" | 68 #include "core/inspector/InspectorState.h" |
| 69 #include "core/inspector/InstrumentingAgents.h" | 69 #include "core/inspector/InstrumentingAgents.h" |
| 70 #include "core/loader/DocumentLoader.h" | 70 #include "core/loader/DocumentLoader.h" |
| 71 #include "core/page/Frame.h" | 71 #include "core/page/Frame.h" |
| 72 #include "core/page/FrameTree.h" | 72 #include "core/page/FrameTree.h" |
| 73 #include "core/page/Page.h" | 73 #include "core/page/Page.h" |
| 74 #include "core/platform/PlatformGestureEvent.h" | |
| 75 #include "core/platform/PlatformMouseEvent.h" | |
| 76 #include "core/platform/PlatformTouchEvent.h" | |
| 77 #include "core/rendering/HitTestResult.h" | 74 #include "core/rendering/HitTestResult.h" |
| 78 #include "core/rendering/RenderView.h" | 75 #include "core/rendering/RenderView.h" |
| 79 #include "core/xml/DocumentXPathEvaluator.h" | 76 #include "core/xml/DocumentXPathEvaluator.h" |
| 80 #include "core/xml/XPathResult.h" | 77 #include "core/xml/XPathResult.h" |
| 78 #include "platform/PlatformGestureEvent.h" |
| 79 #include "platform/PlatformMouseEvent.h" |
| 80 #include "platform/PlatformTouchEvent.h" |
| 81 #include "wtf/HashSet.h" | 81 #include "wtf/HashSet.h" |
| 82 #include "wtf/ListHashSet.h" | 82 #include "wtf/ListHashSet.h" |
| 83 #include "wtf/OwnPtr.h" | 83 #include "wtf/OwnPtr.h" |
| 84 #include "wtf/Vector.h" | 84 #include "wtf/Vector.h" |
| 85 #include "wtf/text/CString.h" | 85 #include "wtf/text/CString.h" |
| 86 #include "wtf/text/WTFString.h" | 86 #include "wtf/text/WTFString.h" |
| 87 | 87 |
| 88 namespace WebCore { | 88 namespace WebCore { |
| 89 | 89 |
| 90 using namespace HTMLNames; | 90 using namespace HTMLNames; |
| (...skipping 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2016 if (!m_documentNodeToIdMap.contains(m_document)) { | 2016 if (!m_documentNodeToIdMap.contains(m_document)) { |
| 2017 RefPtr<TypeBuilder::DOM::Node> root; | 2017 RefPtr<TypeBuilder::DOM::Node> root; |
| 2018 getDocument(errorString, root); | 2018 getDocument(errorString, root); |
| 2019 return errorString->isEmpty(); | 2019 return errorString->isEmpty(); |
| 2020 } | 2020 } |
| 2021 return true; | 2021 return true; |
| 2022 } | 2022 } |
| 2023 | 2023 |
| 2024 } // namespace WebCore | 2024 } // namespace WebCore |
| 2025 | 2025 |
| OLD | NEW |