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

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

Issue 14483003: Absolutify paths to platform/chromium, platform/chromium/support, (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/editing/chromium/EditorChromium.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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 #include "ShadowRoot.h" 162 #include "ShadowRoot.h"
163 #include "StaticHashSetNodeList.h" 163 #include "StaticHashSetNodeList.h"
164 #include "StylePropertySet.h" 164 #include "StylePropertySet.h"
165 #include "StyleResolver.h" 165 #include "StyleResolver.h"
166 #include "StyleSheetContents.h" 166 #include "StyleSheetContents.h"
167 #include "StyleSheetList.h" 167 #include "StyleSheetList.h"
168 #include "TextAutosizer.h" 168 #include "TextAutosizer.h"
169 #include "TextResourceDecoder.h" 169 #include "TextResourceDecoder.h"
170 #include "Timer.h" 170 #include "Timer.h"
171 #include "TouchList.h" 171 #include "TouchList.h"
172 #include "TraceEvent.h"
173 #include "TransformSource.h" 172 #include "TransformSource.h"
174 #include "TreeWalker.h" 173 #include "TreeWalker.h"
175 #include "UserActionElementSet.h" 174 #include "UserActionElementSet.h"
176 #include "UserContentURLPattern.h" 175 #include "UserContentURLPattern.h"
177 #include "VisitedLinkState.h" 176 #include "VisitedLinkState.h"
178 #include "WebCoreMemoryInstrumentation.h" 177 #include "WebCoreMemoryInstrumentation.h"
179 #include "XMLDocumentParser.h" 178 #include "XMLDocumentParser.h"
180 #include "XMLHttpRequest.h" 179 #include "XMLHttpRequest.h"
181 #include "XMLNSNames.h" 180 #include "XMLNSNames.h"
182 #include "XMLNames.h" 181 #include "XMLNames.h"
183 #include "XPathEvaluator.h" 182 #include "XPathEvaluator.h"
184 #include "XPathExpression.h" 183 #include "XPathExpression.h"
185 #include "XPathNSResolver.h" 184 #include "XPathNSResolver.h"
186 #include "XPathResult.h" 185 #include "XPathResult.h"
187 #include "XSLTProcessor.h" 186 #include "XSLTProcessor.h"
188 #include "core/accessibility/AXObjectCache.h" 187 #include "core/accessibility/AXObjectCache.h"
188 #include "core/platform/chromium/TraceEvent.h"
189 #include "htmlediting.h" 189 #include "htmlediting.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>
(...skipping 5593 matching lines...) Expand 10 before | Expand all | Expand 10 after
5792 return; 5792 return;
5793 5793
5794 Vector<RefPtr<Element> > associatedFormControls; 5794 Vector<RefPtr<Element> > associatedFormControls;
5795 copyToVector(m_associatedFormControls, associatedFormControls); 5795 copyToVector(m_associatedFormControls, associatedFormControls);
5796 5796
5797 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls); 5797 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls);
5798 m_associatedFormControls.clear(); 5798 m_associatedFormControls.clear();
5799 } 5799 }
5800 5800
5801 } // namespace WebCore 5801 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/core.gyp/core.gyp ('k') | Source/core/editing/chromium/EditorChromium.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698