| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011, 2013 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2014 Samsung Electronics. All rights reserved. | 3 * Copyright (C) 2014 Samsung Electronics. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 CSSSelectorList m_selectorList; | 100 CSSSelectorList m_selectorList; |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 class SelectorQueryCache { | 103 class SelectorQueryCache { |
| 104 WTF_MAKE_FAST_ALLOCATED; | 104 WTF_MAKE_FAST_ALLOCATED; |
| 105 public: | 105 public: |
| 106 SelectorQuery* add(const AtomicString&, const Document&, ExceptionState&); | 106 SelectorQuery* add(const AtomicString&, const Document&, ExceptionState&); |
| 107 void invalidate(); | 107 void invalidate(); |
| 108 | 108 |
| 109 private: | 109 private: |
| 110 HashMap<AtomicString, OwnPtr<SelectorQuery> > m_entries; | 110 HashMap<AtomicString, OwnPtr<SelectorQuery>> m_entries; |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 } | 113 } |
| 114 | 114 |
| 115 #endif | 115 #endif |
| OLD | NEW |