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