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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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/Position.cpp ('k') | Source/core/dom/ScriptExecutionContext.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) 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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv ed. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv ed.
6 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> 6 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org>
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version. 11 * version 2 of the License, or (at your option) any later version.
12 * 12 *
13 * This library is distributed in the hope that it will be useful, 13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details. 16 * Library General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU Library General Public License 18 * You should have received a copy of the GNU Library General Public License
19 * along with this library; see the file COPYING.LIB. If not, write to 19 * along with this library; see the file COPYING.LIB. If not, write to
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA. 21 * Boston, MA 02110-1301, USA.
22 */ 22 */
23 23
24 #include "config.h" 24 #include "config.h"
25 #include "ScriptElement.h" 25 #include "ScriptElement.h"
26 26
27 #include "CachedScript.h"
28 #include "CachedResourceLoader.h" 27 #include "CachedResourceLoader.h"
29 #include "CachedResourceRequest.h" 28 #include "CachedResourceRequest.h"
29 #include "CachedScript.h"
30 #include "ContentSecurityPolicy.h" 30 #include "ContentSecurityPolicy.h"
31 #include "CrossOriginAccessControl.h" 31 #include "CrossOriginAccessControl.h"
32 #include "Document.h" 32 #include "Document.h"
33 #include "DocumentParser.h" 33 #include "DocumentParser.h"
34 #include "Event.h" 34 #include "Event.h"
35 #include "Frame.h" 35 #include "Frame.h"
36 #include "FrameLoader.h" 36 #include "FrameLoader.h"
37 #include "HTMLNames.h" 37 #include "HTMLNames.h"
38 #include "HTMLParserIdioms.h" 38 #include "HTMLParserIdioms.h"
39 #include "HTMLScriptElement.h" 39 #include "HTMLScriptElement.h"
40 #include "IgnoreDestructiveWriteCountIncrementer.h" 40 #include "IgnoreDestructiveWriteCountIncrementer.h"
41 #include "MIMETypeRegistry.h"
42 #include "Page.h" 41 #include "Page.h"
43 #include "ScriptCallStack.h" 42 #include "ScriptCallStack.h"
44 #include "ScriptController.h" 43 #include "ScriptController.h"
45 #include "ScriptRunner.h" 44 #include "ScriptRunner.h"
46 #include "ScriptSourceCode.h" 45 #include "ScriptSourceCode.h"
47 #include "ScriptValue.h" 46 #include "ScriptValue.h"
48 #include "ScriptableDocumentParser.h" 47 #include "ScriptableDocumentParser.h"
49 #include "SecurityOrigin.h" 48 #include "SecurityOrigin.h"
50 #include "Settings.h" 49 #include "Settings.h"
51 #include "Text.h" 50 #include "Text.h"
51 #include "core/platform/MIMETypeRegistry.h"
52 #include <wtf/StdLibExtras.h> 52 #include <wtf/StdLibExtras.h>
53 #include <wtf/text/StringBuilder.h> 53 #include <wtf/text/StringBuilder.h>
54 #include <wtf/text/StringHash.h> 54 #include <wtf/text/StringHash.h>
55 #include <wtf/text/TextPosition.h> 55 #include <wtf/text/TextPosition.h>
56 56
57 #if ENABLE(SVG) 57 #if ENABLE(SVG)
58 #include "SVGNames.h" 58 #include "SVGNames.h"
59 #include "SVGScriptElement.h" 59 #include "SVGScriptElement.h"
60 #endif 60 #endif
61 61
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 422
423 #if ENABLE(SVG) 423 #if ENABLE(SVG)
424 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag)) 424 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag))
425 return static_cast<SVGScriptElement*>(element); 425 return static_cast<SVGScriptElement*>(element);
426 #endif 426 #endif
427 427
428 return 0; 428 return 0;
429 } 429 }
430 430
431 } 431 }
OLDNEW
« no previous file with comments | « Source/core/dom/Position.cpp ('k') | Source/core/dom/ScriptExecutionContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698