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

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

Issue 14524003: Absolutify paths to bindings/v8, bindings/v8/custom/. 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/dom/DOMStringMap.h ('k') | Source/core/dom/DocumentStyleSheetCollection.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 11 matching lines...) Expand all
22 * You should have received a copy of the GNU Library General Public License 22 * You should have received a copy of the GNU Library General Public License
23 * along with this library; see the file COPYING.LIB. If not, write to 23 * along with this library; see the file COPYING.LIB. If not, write to
24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 * Boston, MA 02110-1301, USA. 25 * Boston, MA 02110-1301, USA.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 30
31 #include "CSSValueKeywords.h" 31 #include "CSSValueKeywords.h"
32 #include "Dictionary.h"
33 #include "FormController.h" 32 #include "FormController.h"
34 #include "HTMLAllCollection.h" 33 #include "HTMLAllCollection.h"
35 #include "HTMLAnchorElement.h" 34 #include "HTMLAnchorElement.h"
36 #include "HTMLBodyElement.h" 35 #include "HTMLBodyElement.h"
37 #include "HTMLCanvasElement.h" 36 #include "HTMLCanvasElement.h"
38 #include "HTMLCollection.h" 37 #include "HTMLCollection.h"
39 #include "HTMLDocument.h" 38 #include "HTMLDocument.h"
40 #include "HTMLElementFactory.h" 39 #include "HTMLElementFactory.h"
41 #include "HTMLFrameOwnerElement.h" 40 #include "HTMLFrameOwnerElement.h"
42 #include "HTMLHeadElement.h" 41 #include "HTMLHeadElement.h"
43 #include "HTMLIFrameElement.h" 42 #include "HTMLIFrameElement.h"
44 #include "HTMLLinkElement.h" 43 #include "HTMLLinkElement.h"
45 #include "HTMLMapElement.h" 44 #include "HTMLMapElement.h"
46 #include "HTMLNameCollection.h" 45 #include "HTMLNameCollection.h"
47 #include "HTMLNames.h" 46 #include "HTMLNames.h"
48 #include "HTMLStyleElement.h" 47 #include "HTMLStyleElement.h"
49 #include "HTMLTitleElement.h" 48 #include "HTMLTitleElement.h"
50 #include "PluginDocument.h" 49 #include "PluginDocument.h"
51 #include "ScriptController.h"
52 #include "ScriptEventListener.h"
53 #include "XMLNSNames.h" 50 #include "XMLNSNames.h"
54 #include "XMLNames.h" 51 #include "XMLNames.h"
52 #include "bindings/v8/Dictionary.h"
53 #include "bindings/v8/ScriptController.h"
54 #include "bindings/v8/ScriptEventListener.h"
55 #include "core/accessibility/AXObjectCache.h" 55 #include "core/accessibility/AXObjectCache.h"
56 #include "core/css/CSSParser.h" 56 #include "core/css/CSSParser.h"
57 #include "core/css/CSSStyleDeclaration.h" 57 #include "core/css/CSSStyleDeclaration.h"
58 #include "core/css/CSSStyleSheet.h" 58 #include "core/css/CSSStyleSheet.h"
59 #include "core/css/FontLoader.h" 59 #include "core/css/FontLoader.h"
60 #include "core/css/MediaQueryList.h" 60 #include "core/css/MediaQueryList.h"
61 #include "core/css/MediaQueryMatcher.h" 61 #include "core/css/MediaQueryMatcher.h"
62 #include "core/css/StylePropertySet.h" 62 #include "core/css/StylePropertySet.h"
63 #include "core/css/StyleResolver.h" 63 #include "core/css/StyleResolver.h"
64 #include "core/css/StyleSheetContents.h" 64 #include "core/css/StyleSheetContents.h"
(...skipping 5653 matching lines...) Expand 10 before | Expand all | Expand 10 after
5718 return; 5718 return;
5719 5719
5720 Vector<RefPtr<Element> > associatedFormControls; 5720 Vector<RefPtr<Element> > associatedFormControls;
5721 copyToVector(m_associatedFormControls, associatedFormControls); 5721 copyToVector(m_associatedFormControls, associatedFormControls);
5722 5722
5723 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls); 5723 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm Controls);
5724 m_associatedFormControls.clear(); 5724 m_associatedFormControls.clear();
5725 } 5725 }
5726 5726
5727 } // namespace WebCore 5727 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/DOMStringMap.h ('k') | Source/core/dom/DocumentStyleSheetCollection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698