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

Side by Side Diff: Source/core/html/parser/CSSPreloadScanner.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2010 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008, 2010 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2009 Torch Mobile, Inc. http://www.torchmobile.com/ 3 * Copyright (C) 2009 Torch Mobile, Inc. http://www.torchmobile.com/
4 * Copyright (C) 2010 Google Inc. All Rights Reserved. 4 * Copyright (C) 2010 Google Inc. All Rights Reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 12 matching lines...) Expand all
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "core/html/parser/CSSPreloadScanner.h" 29 #include "core/html/parser/CSSPreloadScanner.h"
30 30
31 #include "core/html/parser/HTMLIdentifier.h" 31 #include "core/html/parser/HTMLIdentifier.h"
32 #include "core/html/parser/HTMLParserIdioms.h" 32 #include "core/html/parser/HTMLParserIdioms.h"
33 #include "core/loader/cache/CachedResourceRequestInitiators.h"
34 33
35 namespace WebCore { 34 namespace WebCore {
36 35
37 CSSPreloadScanner::CSSPreloadScanner() 36 CSSPreloadScanner::CSSPreloadScanner()
38 : m_state(Initial) 37 : m_state(Initial)
39 , m_requests(0) 38 , m_requests(0)
40 { 39 {
41 } 40 }
42 41
43 CSSPreloadScanner::~CSSPreloadScanner() 42 CSSPreloadScanner::~CSSPreloadScanner()
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 m_state = Initial; 221 m_state = Initial;
223 } else if (equalIgnoringCase("charset", m_rule.characters(), m_rule.length() )) 222 } else if (equalIgnoringCase("charset", m_rule.characters(), m_rule.length() ))
224 m_state = Initial; 223 m_state = Initial;
225 else 224 else
226 m_state = DoneParsingImportRules; 225 m_state = DoneParsingImportRules;
227 m_rule.clear(); 226 m_rule.clear();
228 m_ruleValue.clear(); 227 m_ruleValue.clear();
229 } 228 }
230 229
231 } 230 }
OLDNEW
« no previous file with comments | « Source/core/html/ime/InputMethodContext.cpp ('k') | Source/core/html/parser/CompactHTMLToken.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698