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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 class Node; | 62 class Node; |
63 class Page; | 63 class Page; |
64 class PagePopupController; | 64 class PagePopupController; |
65 class Range; | 65 class Range; |
66 class ExecutionContext; | 66 class ExecutionContext; |
67 class SerializedScriptValue; | 67 class SerializedScriptValue; |
68 class ShadowRoot; | 68 class ShadowRoot; |
69 class TypeConversions; | 69 class TypeConversions; |
70 | 70 |
71 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna
ls>, public ContextLifecycleObserver { | 71 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna
ls>, public ContextLifecycleObserver { |
72 DECLARE_GC_INFO; | |
73 public: | 72 public: |
74 static PassRefPtrWillBeRawPtr<Internals> create(Document*); | 73 static PassRefPtrWillBeRawPtr<Internals> create(Document*); |
75 virtual ~Internals(); | 74 virtual ~Internals(); |
76 | 75 |
77 static void resetToConsistentState(Page*); | 76 static void resetToConsistentState(Page*); |
78 | 77 |
79 String elementRenderTreeAsText(Element*, ExceptionState&); | 78 String elementRenderTreeAsText(Element*, ExceptionState&); |
80 | 79 |
81 String address(Node*); | 80 String address(Node*); |
82 | 81 |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 323 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
325 RefPtr<DOMWindow> m_frontendWindow; | 324 RefPtr<DOMWindow> m_frontendWindow; |
326 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; | 325 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; |
327 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 326 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
328 RefPtrWillBeMember<InternalProfilers> m_profilers; | 327 RefPtrWillBeMember<InternalProfilers> m_profilers; |
329 }; | 328 }; |
330 | 329 |
331 } // namespace WebCore | 330 } // namespace WebCore |
332 | 331 |
333 #endif | 332 #endif |
OLD | NEW |