OLD | NEW |
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 Loading... |
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 "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
31 #include "wtf/HashMap.h" | 31 #include "wtf/HashMap.h" |
32 #include "wtf/HashSet.h" | 32 #include "wtf/HashSet.h" |
| 33 #include "wtf/PassOwnPtr.h" |
33 #include "wtf/text/WTFString.h" | 34 #include "wtf/text/WTFString.h" |
34 | 35 |
35 namespace blink { | 36 namespace blink { |
36 | 37 |
37 class KURL; | 38 class KURL; |
38 class ExecutionContext; | 39 class ExecutionContext; |
39 class SecurityOrigin; | 40 class SecurityOrigin; |
40 class URLRegistry; | 41 class URLRegistry; |
41 class URLRegistrable; | 42 class URLRegistrable; |
42 | 43 |
(...skipping 20 matching lines...) Expand all Loading... |
63 typedef HashMap<URLString, String> URLMap; | 64 typedef HashMap<URLString, String> URLMap; |
64 typedef HashMap<URLRegistry*, URLMap> RegistryURLMap; | 65 typedef HashMap<URLRegistry*, URLMap> RegistryURLMap; |
65 | 66 |
66 RegistryURLMap m_registryToURL; | 67 RegistryURLMap m_registryToURL; |
67 bool m_isStopped; | 68 bool m_isStopped; |
68 }; | 69 }; |
69 | 70 |
70 } // namespace blink | 71 } // namespace blink |
71 | 72 |
72 #endif // PublicURLManager_h | 73 #endif // PublicURLManager_h |
OLD | NEW |