| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All Rights Reserved. | 2 * Copyright (C) 2011 Google Inc. All Rights Reserved. |
| 3 * Copyright (C) 2012 Apple Inc. All Rights Reserved. | 3 * Copyright (C) 2012 Apple Inc. 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 * 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 14 matching lines...) Expand all Loading... |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 #ifndef TreeScope_h | 27 #ifndef TreeScope_h |
| 28 #define TreeScope_h | 28 #define TreeScope_h |
| 29 | 29 |
| 30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
| 31 #include "core/dom/DocumentOrderedMap.h" | 31 #include "core/dom/DocumentOrderedMap.h" |
| 32 #include "core/html/forms/RadioButtonGroupScope.h" | 32 #include "core/html/forms/RadioButtonGroupScope.h" |
| 33 #include "core/layout/HitTestRequest.h" | 33 #include "core/layout/HitTestRequest.h" |
| 34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "wtf/text/AtomicString.h" | 35 #include "platform/wtf/text/AtomicString.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class ContainerNode; | 39 class ContainerNode; |
| 40 class DOMSelection; | 40 class DOMSelection; |
| 41 class Document; | 41 class Document; |
| 42 class Element; | 42 class Element; |
| 43 class HTMLMapElement; | 43 class HTMLMapElement; |
| 44 class HitTestResult; | 44 class HitTestResult; |
| 45 class IdTargetObserverRegistry; | 45 class IdTargetObserverRegistry; |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 HitTestResult HitTestInDocument( | 174 HitTestResult HitTestInDocument( |
| 175 const Document*, | 175 const Document*, |
| 176 int x, | 176 int x, |
| 177 int y, | 177 int y, |
| 178 const HitTestRequest& = HitTestRequest::kReadOnly | | 178 const HitTestRequest& = HitTestRequest::kReadOnly | |
| 179 HitTestRequest::kActive); | 179 HitTestRequest::kActive); |
| 180 | 180 |
| 181 } // namespace blink | 181 } // namespace blink |
| 182 | 182 |
| 183 #endif // TreeScope_h | 183 #endif // TreeScope_h |
| OLD | NEW |