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

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

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Stale refernence to weboriginexport in .gpyi Created 7 years, 1 month 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/Node.h ('k') | Source/core/dom/SecurityContext.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 * 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
(...skipping 27 matching lines...) Expand all
38 #include "core/fetch/FetchRequest.h" 38 #include "core/fetch/FetchRequest.h"
39 #include "core/fetch/ResourceFetcher.h" 39 #include "core/fetch/ResourceFetcher.h"
40 #include "core/fetch/ScriptResource.h" 40 #include "core/fetch/ScriptResource.h"
41 #include "core/html/HTMLImport.h" 41 #include "core/html/HTMLImport.h"
42 #include "core/html/HTMLScriptElement.h" 42 #include "core/html/HTMLScriptElement.h"
43 #include "core/html/parser/HTMLParserIdioms.h" 43 #include "core/html/parser/HTMLParserIdioms.h"
44 #include "core/frame/ContentSecurityPolicy.h" 44 #include "core/frame/ContentSecurityPolicy.h"
45 #include "core/frame/Frame.h" 45 #include "core/frame/Frame.h"
46 #include "core/svg/SVGScriptElement.h" 46 #include "core/svg/SVGScriptElement.h"
47 #include "platform/MIMETypeRegistry.h" 47 #include "platform/MIMETypeRegistry.h"
48 #include "weborigin/SecurityOrigin.h" 48 #include "platform/weborigin/SecurityOrigin.h"
49 #include "wtf/StdLibExtras.h" 49 #include "wtf/StdLibExtras.h"
50 #include "wtf/text/StringBuilder.h" 50 #include "wtf/text/StringBuilder.h"
51 #include "wtf/text/StringHash.h" 51 #include "wtf/text/StringHash.h"
52 #include "wtf/text/TextPosition.h" 52 #include "wtf/text/TextPosition.h"
53 53
54 namespace WebCore { 54 namespace WebCore {
55 55
56 ScriptLoader::ScriptLoader(Element* element, bool parserInserted, bool alreadySt arted) 56 ScriptLoader::ScriptLoader(Element* element, bool parserInserted, bool alreadySt arted)
57 : m_element(element) 57 : m_element(element)
58 , m_resource(0) 58 , m_resource(0)
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 if (isHTMLScriptLoader(element)) 434 if (isHTMLScriptLoader(element))
435 return toHTMLScriptElement(element)->loader(); 435 return toHTMLScriptElement(element)->loader();
436 436
437 if (isSVGScriptLoader(element)) 437 if (isSVGScriptLoader(element))
438 return toSVGScriptElement(element)->loader(); 438 return toSVGScriptElement(element)->loader();
439 439
440 return 0; 440 return 0;
441 } 441 }
442 442
443 } 443 }
OLDNEW
« no previous file with comments | « Source/core/dom/Node.h ('k') | Source/core/dom/SecurityContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698