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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 class MallocStatistics; | 59 class MallocStatistics; |
60 class Node; | 60 class Node; |
61 class Page; | 61 class Page; |
62 class PagePopupController; | 62 class PagePopupController; |
63 class Range; | 63 class Range; |
64 class ExecutionContext; | 64 class ExecutionContext; |
65 class SerializedScriptValue; | 65 class SerializedScriptValue; |
66 class ShadowRoot; | 66 class ShadowRoot; |
67 class TypeConversions; | 67 class TypeConversions; |
68 | 68 |
69 class Internals : public RefCounted<Internals> | 69 class Internals FINAL : public RefCounted<Internals> |
70 , public ContextLifecycleObserver { | 70 , public ContextLifecycleObserver { |
71 public: | 71 public: |
72 static PassRefPtr<Internals> create(Document*); | 72 static PassRefPtr<Internals> create(Document*); |
73 virtual ~Internals(); | 73 virtual ~Internals(); |
74 | 74 |
75 static void resetToConsistentState(Page*); | 75 static void resetToConsistentState(Page*); |
76 | 76 |
77 String elementRenderTreeAsText(Element*, ExceptionState&); | 77 String elementRenderTreeAsText(Element*, ExceptionState&); |
78 | 78 |
79 String address(Node*); | 79 String address(Node*); |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 RefPtr<DOMWindow> m_frontendWindow; | 317 RefPtr<DOMWindow> m_frontendWindow; |
318 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 318 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
319 RefPtr<InternalRuntimeFlags> m_runtimeFlags; | 319 RefPtr<InternalRuntimeFlags> m_runtimeFlags; |
320 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; | 320 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; |
321 RefPtr<InternalProfilers> m_profilers; | 321 RefPtr<InternalProfilers> m_profilers; |
322 }; | 322 }; |
323 | 323 |
324 } // namespace WebCore | 324 } // namespace WebCore |
325 | 325 |
326 #endif | 326 #endif |
OLD | NEW |