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

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

Issue 298863010: Oilpan: have PendingScripts trace their script elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Trace HTMLScriptRunnerHost from HTMLScriptRunner Created 6 years, 6 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
« no previous file with comments | « Source/core/dom/PendingScript.h ('k') | Source/core/dom/ScriptLoader.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) 2010 Google, Inc. All Rights Reserved. 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 17 matching lines...) Expand all
28 28
29 #include "core/dom/Element.h" 29 #include "core/dom/Element.h"
30 #include "core/fetch/ScriptResource.h" 30 #include "core/fetch/ScriptResource.h"
31 31
32 namespace WebCore { 32 namespace WebCore {
33 33
34 PendingScript::~PendingScript() 34 PendingScript::~PendingScript()
35 { 35 {
36 } 36 }
37 37
38 PassRefPtr<Element> PendingScript::releaseElementAndClear() 38 PassRefPtrWillBeRawPtr<Element> PendingScript::releaseElementAndClear()
39 { 39 {
40 setScriptResource(0); 40 setScriptResource(0);
41 m_watchingForLoad = false; 41 m_watchingForLoad = false;
42 m_startingPosition = TextPosition::belowRangePosition(); 42 m_startingPosition = TextPosition::belowRangePosition();
43 return m_element.release(); 43 return m_element.release();
44 } 44 }
45 45
46 void PendingScript::setScriptResource(ScriptResource* resource) 46 void PendingScript::setScriptResource(ScriptResource* resource)
47 { 47 {
48 setResource(resource); 48 setResource(resource);
49 } 49 }
50 50
51 void PendingScript::notifyFinished(Resource*) 51 void PendingScript::notifyFinished(Resource*)
52 { 52 {
53 } 53 }
54 54
55 void PendingScript::trace(Visitor* visitor)
56 {
57 visitor->trace(m_element);
55 } 58 }
59
60 }
OLDNEW
« no previous file with comments | « Source/core/dom/PendingScript.h ('k') | Source/core/dom/ScriptLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698