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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 class PagePopupController; | 67 class PagePopupController; |
68 class PrivateScriptTest; | 68 class PrivateScriptTest; |
69 class Range; | 69 class Range; |
70 class SerializedScriptValue; | 70 class SerializedScriptValue; |
71 class ShadowRoot; | 71 class ShadowRoot; |
72 template <typename NodeType> class StaticNodeTypeList; | 72 template <typename NodeType> class StaticNodeTypeList; |
73 typedef StaticNodeTypeList<Node> StaticNodeList; | 73 typedef StaticNodeTypeList<Node> StaticNodeList; |
74 class TypeConversions; | 74 class TypeConversions; |
75 | 75 |
76 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna
ls>, public ScriptWrappable, public ContextLifecycleObserver { | 76 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna
ls>, public ScriptWrappable, public ContextLifecycleObserver { |
| 77 DEFINE_WRAPPERTYPEINFO(); |
77 public: | 78 public: |
78 static PassRefPtrWillBeRawPtr<Internals> create(Document*); | 79 static PassRefPtrWillBeRawPtr<Internals> create(Document*); |
79 virtual ~Internals(); | 80 virtual ~Internals(); |
80 | 81 |
81 static void resetToConsistentState(Page*); | 82 static void resetToConsistentState(Page*); |
82 | 83 |
83 String elementRenderTreeAsText(Element*, ExceptionState&); | 84 String elementRenderTreeAsText(Element*, ExceptionState&); |
84 | 85 |
85 String address(Node*); | 86 String address(Node*); |
86 | 87 |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 Vector<String> iconURLs(Document*, int iconTypesMask) const; | 325 Vector<String> iconURLs(Document*, int iconTypesMask) const; |
325 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 326 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
326 | 327 |
327 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 328 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
328 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 329 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
329 RefPtrWillBeMember<InternalProfilers> m_profilers; | 330 RefPtrWillBeMember<InternalProfilers> m_profilers; |
330 }; | 331 }; |
331 | 332 |
332 } // namespace blink | 333 } // namespace blink |
333 | 334 |
334 #endif | 335 #endif // Internals_h |
OLD | NEW |