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

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

Issue 14307014: Absolutify paths to workers/, workers/chromium/, xml/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: in 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/dom/DOMExceptions.in ('k') | Source/core/dom/EventNames.in » ('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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "HTMLParserIdioms.h" 49 #include "HTMLParserIdioms.h"
50 #include "HTMLStyleElement.h" 50 #include "HTMLStyleElement.h"
51 #include "HTMLTitleElement.h" 51 #include "HTMLTitleElement.h"
52 #include "InspectorCounters.h" 52 #include "InspectorCounters.h"
53 #include "InspectorInstrumentation.h" 53 #include "InspectorInstrumentation.h"
54 #include "NestingLevelIncrementer.h" 54 #include "NestingLevelIncrementer.h"
55 #include "PluginDocument.h" 55 #include "PluginDocument.h"
56 #include "ScriptCallStack.h" 56 #include "ScriptCallStack.h"
57 #include "ScriptController.h" 57 #include "ScriptController.h"
58 #include "ScriptEventListener.h" 58 #include "ScriptEventListener.h"
59 #include "SharedWorkerRepository.h"
60 #include "XMLHttpRequest.h"
61 #include "XMLNSNames.h" 59 #include "XMLNSNames.h"
62 #include "XMLNames.h" 60 #include "XMLNames.h"
63 #include "XPathEvaluator.h"
64 #include "XPathExpression.h"
65 #include "XPathNSResolver.h"
66 #include "XPathResult.h"
67 #include "XSLTProcessor.h"
68 #include "core/accessibility/AXObjectCache.h" 61 #include "core/accessibility/AXObjectCache.h"
69 #include "core/css/CSSParser.h" 62 #include "core/css/CSSParser.h"
70 #include "core/css/CSSStyleDeclaration.h" 63 #include "core/css/CSSStyleDeclaration.h"
71 #include "core/css/CSSStyleSheet.h" 64 #include "core/css/CSSStyleSheet.h"
72 #include "core/css/FontLoader.h" 65 #include "core/css/FontLoader.h"
73 #include "core/css/MediaQueryList.h" 66 #include "core/css/MediaQueryList.h"
74 #include "core/css/MediaQueryMatcher.h" 67 #include "core/css/MediaQueryMatcher.h"
75 #include "core/css/StylePropertySet.h" 68 #include "core/css/StylePropertySet.h"
76 #include "core/css/StyleResolver.h" 69 #include "core/css/StyleResolver.h"
77 #include "core/css/StyleSheetContents.h" 70 #include "core/css/StyleSheetContents.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 #include "core/rendering/HitTestRequest.h" 172 #include "core/rendering/HitTestRequest.h"
180 #include "core/rendering/HitTestResult.h" 173 #include "core/rendering/HitTestResult.h"
181 #include "core/rendering/RenderArena.h" 174 #include "core/rendering/RenderArena.h"
182 #include "core/rendering/RenderFullScreen.h" 175 #include "core/rendering/RenderFullScreen.h"
183 #include "core/rendering/RenderLayerCompositor.h" 176 #include "core/rendering/RenderLayerCompositor.h"
184 #include "core/rendering/RenderNamedFlowThread.h" 177 #include "core/rendering/RenderNamedFlowThread.h"
185 #include "core/rendering/RenderTextControl.h" 178 #include "core/rendering/RenderTextControl.h"
186 #include "core/rendering/RenderView.h" 179 #include "core/rendering/RenderView.h"
187 #include "core/rendering/RenderWidget.h" 180 #include "core/rendering/RenderWidget.h"
188 #include "core/rendering/TextAutosizer.h" 181 #include "core/rendering/TextAutosizer.h"
182 #include "core/workers/SharedWorkerRepository.h"
183 #include "core/xml/XMLHttpRequest.h"
184 #include "core/xml/XPathEvaluator.h"
185 #include "core/xml/XPathExpression.h"
186 #include "core/xml/XPathNSResolver.h"
187 #include "core/xml/XPathResult.h"
188 #include "core/xml/XSLTProcessor.h"
189 #include "core/xml/parser/XMLDocumentParser.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>
(...skipping 5529 matching lines...) Expand 10 before | Expand all | Expand 10 after
5728 return; 5728 return;
5729 5729
5730 Vector<RefPtr<Element> > associatedFormControls; 5730 Vector<RefPtr<Element> > associatedFormControls;
5731 copyToVector(m_associatedFormControls, associatedFormControls); 5731 copyToVector(m_associatedFormControls, associatedFormControls);
5732 5732
5733 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls); 5733 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls);
5734 m_associatedFormControls.clear(); 5734 m_associatedFormControls.clear();
5735 } 5735 }
5736 5736
5737 } // namespace WebCore 5737 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/DOMExceptions.in ('k') | Source/core/dom/EventNames.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698