Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1368)

Side by Side Diff: Source/core/inspector/InspectorDOMAgent.cpp

Issue 698923002: Enable Oilpan for core/xml/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Non-Oilpan fixes Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/xml/DOMParser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 default: 1075 default:
1076 break; 1076 break;
1077 } 1077 }
1078 } 1078 }
1079 1079
1080 // XPath evaluation 1080 // XPath evaluation
1081 for (WillBeHeapVector<RawPtrWillBeMember<Document> >::iterator it = docs .begin(); it != docs.end(); ++it) { 1081 for (WillBeHeapVector<RawPtrWillBeMember<Document> >::iterator it = docs .begin(); it != docs.end(); ++it) {
1082 Document* document = *it; 1082 Document* document = *it;
1083 ASSERT(document); 1083 ASSERT(document);
1084 TrackExceptionState exceptionState; 1084 TrackExceptionState exceptionState;
1085 RefPtrWillBeRawPtr<XPathResult> result = DocumentXPathEvaluator::eva luate(*document, whitespaceTrimmedQuery, document, nullptr, XPathResult::ORDERED _NODE_SNAPSHOT_TYPE, 0, exceptionState); 1085 XPathResult* result = DocumentXPathEvaluator::evaluate(*document, wh itespaceTrimmedQuery, document, nullptr, XPathResult::ORDERED_NODE_SNAPSHOT_TYPE , 0, exceptionState);
1086 if (exceptionState.hadException() || !result) 1086 if (exceptionState.hadException() || !result)
1087 continue; 1087 continue;
1088 1088
1089 unsigned long size = result->snapshotLength(exceptionState); 1089 unsigned long size = result->snapshotLength(exceptionState);
1090 for (unsigned long i = 0; !exceptionState.hadException() && i < size ; ++i) { 1090 for (unsigned long i = 0; !exceptionState.hadException() && i < size ; ++i) {
1091 Node* node = result->snapshotItem(i, exceptionState); 1091 Node* node = result->snapshotItem(i, exceptionState);
1092 if (exceptionState.hadException()) 1092 if (exceptionState.hadException())
1093 break; 1093 break;
1094 1094
1095 if (node->nodeType() == Node::ATTRIBUTE_NODE) 1095 if (node->nodeType() == Node::ATTRIBUTE_NODE)
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after
2193 visitor->trace(m_revalidateStyleAttrTask); 2193 visitor->trace(m_revalidateStyleAttrTask);
2194 visitor->trace(m_searchResults); 2194 visitor->trace(m_searchResults);
2195 #endif 2195 #endif
2196 visitor->trace(m_history); 2196 visitor->trace(m_history);
2197 visitor->trace(m_domEditor); 2197 visitor->trace(m_domEditor);
2198 visitor->trace(m_listener); 2198 visitor->trace(m_listener);
2199 InspectorBaseAgent::trace(visitor); 2199 InspectorBaseAgent::trace(visitor);
2200 } 2200 }
2201 2201
2202 } // namespace blink 2202 } // namespace blink
2203
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/xml/DOMParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698