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

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

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix 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/EventTarget.cpp ('k') | Source/core/history/CachedFrame.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 23 matching lines...) Expand all
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" 41 #include "MIMETypeRegistry.h"
42 #include "Page.h" 42 #include "Page.h"
43 #include "ScriptCallStack.h" 43 #include "ScriptCallStack.h"
44 #include "ScriptController.h"
44 #include "ScriptRunner.h" 45 #include "ScriptRunner.h"
45 #include "ScriptSourceCode.h" 46 #include "ScriptSourceCode.h"
46 #include "ScriptValue.h" 47 #include "ScriptValue.h"
47 #include "ScriptableDocumentParser.h" 48 #include "ScriptableDocumentParser.h"
48 #include "SecurityOrigin.h" 49 #include "SecurityOrigin.h"
49 #include "Settings.h" 50 #include "Settings.h"
50 #include "Text.h" 51 #include "Text.h"
51 #include <wtf/StdLibExtras.h> 52 #include <wtf/StdLibExtras.h>
52 #include <wtf/text/StringBuilder.h> 53 #include <wtf/text/StringBuilder.h>
53 #include <wtf/text/StringHash.h> 54 #include <wtf/text/StringHash.h>
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 420
420 #if ENABLE(SVG) 421 #if ENABLE(SVG)
421 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag)) 422 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag))
422 return static_cast<SVGScriptElement*>(element); 423 return static_cast<SVGScriptElement*>(element);
423 #endif 424 #endif
424 425
425 return 0; 426 return 0;
426 } 427 }
427 428
428 } 429 }
OLDNEW
« no previous file with comments | « Source/core/dom/EventTarget.cpp ('k') | Source/core/history/CachedFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698