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

Side by Side Diff: Source/core/html/PublicURLManager.h

Issue 17388003: Remove unused includes from core/{editing,fileapi,history,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 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/html/NumberInputType.cpp ('k') | Source/core/html/RadioNodeList.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) 2012 Motorola Mobility Inc. 2 * Copyright (C) 2012 Motorola Mobility Inc.
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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 12 matching lines...) Expand all
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef PublicURLManager_h 26 #ifndef PublicURLManager_h
27 #define PublicURLManager_h 27 #define PublicURLManager_h
28 28
29 #include "core/dom/ActiveDOMObject.h" 29 #include "core/dom/ActiveDOMObject.h"
30 #include "wtf/HashMap.h" 30 #include "wtf/HashMap.h"
31 #include "wtf/HashSet.h" 31 #include "wtf/HashSet.h"
32 #include "wtf/PassOwnPtr.h" 32 #include "wtf/PassOwnPtr.h"
33 #include "wtf/RefCounted.h"
34 #include "wtf/text/WTFString.h" 33 #include "wtf/text/WTFString.h"
35 34
36 namespace WebCore { 35 namespace WebCore {
37 36
38 class KURL; 37 class KURL;
39 class ScriptExecutionContext; 38 class ScriptExecutionContext;
40 class SecurityOrigin; 39 class SecurityOrigin;
41 class URLRegistry; 40 class URLRegistry;
42 class URLRegistrable; 41 class URLRegistrable;
43 42
(...skipping 13 matching lines...) Expand all
57 56
58 typedef HashSet<String> URLSet; 57 typedef HashSet<String> URLSet;
59 typedef HashMap<URLRegistry*, URLSet > RegistryURLMap; 58 typedef HashMap<URLRegistry*, URLSet > RegistryURLMap;
60 RegistryURLMap m_registryToURL; 59 RegistryURLMap m_registryToURL;
61 bool m_isStopped; 60 bool m_isStopped;
62 }; 61 };
63 62
64 } // namespace WebCore 63 } // namespace WebCore
65 64
66 #endif // PUBLICURLMANAGER_h 65 #endif // PUBLICURLMANAGER_h
OLDNEW
« no previous file with comments | « Source/core/html/NumberInputType.cpp ('k') | Source/core/html/RadioNodeList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698