| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 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 * | 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 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #ifndef Internals_h | 27 #ifndef Internals_h |
| 28 #define Internals_h | 28 #define Internals_h |
| 29 | 29 |
| 30 #include "bindings/v8/ExceptionStatePlaceholder.h" | 30 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 31 #include "bindings/v8/ScriptValue.h" | 31 #include "bindings/v8/ScriptValue.h" |
| 32 #include "core/css/CSSComputedStyleDeclaration.h" | 32 #include "core/css/CSSComputedStyleDeclaration.h" |
| 33 #include "core/dom/ContextLifecycleObserver.h" | 33 #include "core/dom/ContextLifecycleObserver.h" |
| 34 #include "core/dom/NodeList.h" | 34 #include "core/dom/NodeList.h" |
| 35 #include "core/page/scrolling/ScrollingCoordinator.h" | 35 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 36 #include <wtf/ArrayBuffer.h> | 36 #include "wtf/ArrayBuffer.h" |
| 37 #include <wtf/PassRefPtr.h> | 37 #include "wtf/PassRefPtr.h" |
| 38 #include <wtf/RefCounted.h> | 38 #include "wtf/RefCounted.h" |
| 39 #include <wtf/text/WTFString.h> | 39 #include "wtf/text/WTFString.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class ClientRect; | 43 class ClientRect; |
| 44 class ClientRectList; | 44 class ClientRectList; |
| 45 class DOMPoint; | 45 class DOMPoint; |
| 46 class DOMStringList; | 46 class DOMStringList; |
| 47 class DOMWindow; | 47 class DOMWindow; |
| 48 class Document; | 48 class Document; |
| 49 class DocumentMarker; | 49 class DocumentMarker; |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 308 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
| 309 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; | 309 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; |
| 310 int m_touchEventTargetRectUpdateCount; | 310 int m_touchEventTargetRectUpdateCount; |
| 311 RefPtr<LayerRectList> m_currentTouchEventRects; | 311 RefPtr<LayerRectList> m_currentTouchEventRects; |
| 312 RefPtr<InternalProfilers> m_profilers; | 312 RefPtr<InternalProfilers> m_profilers; |
| 313 }; | 313 }; |
| 314 | 314 |
| 315 } // namespace WebCore | 315 } // namespace WebCore |
| 316 | 316 |
| 317 #endif | 317 #endif |
| OLD | NEW |