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

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

Issue 19010006: core/dom: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rm extra blank line Created 7 years, 5 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/NodeList.h ('k') | Source/core/dom/Position.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) 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 10 matching lines...) Expand all
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef PendingScript_h 26 #ifndef PendingScript_h
27 #define PendingScript_h 27 #define PendingScript_h
28 28
29 #include "core/loader/cache/CachedResourceClient.h" 29 #include "core/loader/cache/CachedResourceClient.h"
30 #include "core/loader/cache/CachedResourceHandle.h" 30 #include "core/loader/cache/CachedResourceHandle.h"
31 #include <wtf/PassRefPtr.h> 31 #include "wtf/PassRefPtr.h"
32 #include <wtf/RefPtr.h> 32 #include "wtf/RefPtr.h"
33 #include <wtf/text/TextPosition.h> 33 #include "wtf/text/TextPosition.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 class CachedScript; 37 class CachedScript;
38 class Element; 38 class Element;
39 39
40 // A container for an external script which may be loaded and executed. 40 // A container for an external script which may be loaded and executed.
41 // 41 //
42 // A CachedResourceHandle alone does not prevent the underlying CachedResource 42 // A CachedResourceHandle alone does not prevent the underlying CachedResource
43 // from purging its data buffer. This class holds a dummy client open for its 43 // from purging its data buffer. This class holds a dummy client open for its
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 private: 99 private:
100 bool m_watchingForLoad; 100 bool m_watchingForLoad;
101 RefPtr<Element> m_element; 101 RefPtr<Element> m_element;
102 TextPosition m_startingPosition; // Only used for inline script tags. 102 TextPosition m_startingPosition; // Only used for inline script tags.
103 CachedResourceHandle<CachedScript> m_cachedScript; 103 CachedResourceHandle<CachedScript> m_cachedScript;
104 }; 104 };
105 105
106 } 106 }
107 107
108 #endif 108 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/NodeList.h ('k') | Source/core/dom/Position.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698