| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 public: | 47 public: |
| 48 static PassOwnPtrWillBeRawPtr<PublicURLManager> create(ExecutionContext*); | 48 static PassOwnPtrWillBeRawPtr<PublicURLManager> create(ExecutionContext*); |
| 49 | 49 |
| 50 void registerURL(SecurityOrigin*, const KURL&, URLRegistrable*, const String
& uuid = String()); | 50 void registerURL(SecurityOrigin*, const KURL&, URLRegistrable*, const String
& uuid = String()); |
| 51 void revoke(const KURL&); | 51 void revoke(const KURL&); |
| 52 void revoke(const String& uuid); | 52 void revoke(const String& uuid); |
| 53 | 53 |
| 54 // ActiveDOMObject interface. | 54 // ActiveDOMObject interface. |
| 55 virtual void stop() override; | 55 virtual void stop() override; |
| 56 | 56 |
| 57 virtual void trace(Visitor*) override; | 57 DECLARE_VIRTUAL_TRACE(); |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 explicit PublicURLManager(ExecutionContext*); | 60 explicit PublicURLManager(ExecutionContext*); |
| 61 | 61 |
| 62 // One or more URLs can be associated with the same unique ID. | 62 // One or more URLs can be associated with the same unique ID. |
| 63 // Objects need be revoked by unique ID in some cases. | 63 // Objects need be revoked by unique ID in some cases. |
| 64 typedef String URLString; | 64 typedef String URLString; |
| 65 typedef HashMap<URLString, String> URLMap; | 65 typedef HashMap<URLString, String> URLMap; |
| 66 typedef HashMap<URLRegistry*, URLMap> RegistryURLMap; | 66 typedef HashMap<URLRegistry*, URLMap> RegistryURLMap; |
| 67 | 67 |
| 68 RegistryURLMap m_registryToURL; | 68 RegistryURLMap m_registryToURL; |
| 69 bool m_isStopped; | 69 bool m_isStopped; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace blink | 72 } // namespace blink |
| 73 | 73 |
| 74 #endif // PublicURLManager_h | 74 #endif // PublicURLManager_h |
| OLD | NEW |