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

Side by Side Diff: Source/core/dom/Document.cpp

Issue 14358030: Absolutify paths to history/, xml/parser/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 7 months 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gyp/core.gyp ('k') | Source/core/dom/DocumentFragment.cpp » ('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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 #include "StylePropertySet.h" 110 #include "StylePropertySet.h"
111 #include "StyleResolver.h" 111 #include "StyleResolver.h"
112 #include "StyleSheetContents.h" 112 #include "StyleSheetContents.h"
113 #include "StyleSheetList.h" 113 #include "StyleSheetList.h"
114 #include "TouchList.h" 114 #include "TouchList.h"
115 #include "TransformSource.h" 115 #include "TransformSource.h"
116 #include "TreeWalker.h" 116 #include "TreeWalker.h"
117 #include "UserActionElementSet.h" 117 #include "UserActionElementSet.h"
118 #include "VisitedLinkState.h" 118 #include "VisitedLinkState.h"
119 #include "WebCoreMemoryInstrumentation.h" 119 #include "WebCoreMemoryInstrumentation.h"
120 #include "XMLDocumentParser.h"
121 #include "XMLHttpRequest.h" 120 #include "XMLHttpRequest.h"
122 #include "XMLNSNames.h" 121 #include "XMLNSNames.h"
123 #include "XMLNames.h" 122 #include "XMLNames.h"
124 #include "XPathEvaluator.h" 123 #include "XPathEvaluator.h"
125 #include "XPathExpression.h" 124 #include "XPathExpression.h"
126 #include "XPathNSResolver.h" 125 #include "XPathNSResolver.h"
127 #include "XPathResult.h" 126 #include "XPathResult.h"
128 #include "XSLTProcessor.h" 127 #include "XSLTProcessor.h"
129 #include "core/accessibility/AXObjectCache.h" 128 #include "core/accessibility/AXObjectCache.h"
130 #include "core/editing/Editor.h" 129 #include "core/editing/Editor.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 #include "core/rendering/HitTestRequest.h" 179 #include "core/rendering/HitTestRequest.h"
181 #include "core/rendering/HitTestResult.h" 180 #include "core/rendering/HitTestResult.h"
182 #include "core/rendering/RenderArena.h" 181 #include "core/rendering/RenderArena.h"
183 #include "core/rendering/RenderFullScreen.h" 182 #include "core/rendering/RenderFullScreen.h"
184 #include "core/rendering/RenderLayerCompositor.h" 183 #include "core/rendering/RenderLayerCompositor.h"
185 #include "core/rendering/RenderNamedFlowThread.h" 184 #include "core/rendering/RenderNamedFlowThread.h"
186 #include "core/rendering/RenderTextControl.h" 185 #include "core/rendering/RenderTextControl.h"
187 #include "core/rendering/RenderView.h" 186 #include "core/rendering/RenderView.h"
188 #include "core/rendering/RenderWidget.h" 187 #include "core/rendering/RenderWidget.h"
189 #include "core/rendering/TextAutosizer.h" 188 #include "core/rendering/TextAutosizer.h"
189 #include "core/xml/parser/XMLDocumentParser.h"
190 #include <wtf/CurrentTime.h> 190 #include <wtf/CurrentTime.h>
191 #include <wtf/HashFunctions.h> 191 #include <wtf/HashFunctions.h>
192 #include <wtf/MainThread.h> 192 #include <wtf/MainThread.h>
193 #include <wtf/MemoryInstrumentationHashCountedSet.h> 193 #include <wtf/MemoryInstrumentationHashCountedSet.h>
194 #include <wtf/MemoryInstrumentationHashMap.h> 194 #include <wtf/MemoryInstrumentationHashMap.h>
195 #include <wtf/MemoryInstrumentationHashSet.h> 195 #include <wtf/MemoryInstrumentationHashSet.h>
196 #include <wtf/MemoryInstrumentationVector.h> 196 #include <wtf/MemoryInstrumentationVector.h>
197 #include <wtf/PassRefPtr.h> 197 #include <wtf/PassRefPtr.h>
198 #include <wtf/StdLibExtras.h> 198 #include <wtf/StdLibExtras.h>
199 #include <wtf/text/StringBuffer.h> 199 #include <wtf/text/StringBuffer.h>
(...skipping 5584 matching lines...) Expand 10 before | Expand all | Expand 10 after
5784 return; 5784 return;
5785 5785
5786 Vector<RefPtr<Element> > associatedFormControls; 5786 Vector<RefPtr<Element> > associatedFormControls;
5787 copyToVector(m_associatedFormControls, associatedFormControls); 5787 copyToVector(m_associatedFormControls, associatedFormControls);
5788 5788
5789 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls); 5789 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls);
5790 m_associatedFormControls.clear(); 5790 m_associatedFormControls.clear();
5791 } 5791 }
5792 5792
5793 } // namespace WebCore 5793 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/core.gyp/core.gyp ('k') | Source/core/dom/DocumentFragment.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698