| 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 Page; | 67 class Page; |
| 68 class PagePopupController; | 68 class PagePopupController; |
| 69 class PrivateScriptTest; | 69 class PrivateScriptTest; |
| 70 class Range; | 70 class Range; |
| 71 class SerializedScriptValue; | 71 class SerializedScriptValue; |
| 72 class ShadowRoot; | 72 class ShadowRoot; |
| 73 template <typename NodeType> class StaticNodeTypeList; | 73 template <typename NodeType> class StaticNodeTypeList; |
| 74 typedef StaticNodeTypeList<Node> StaticNodeList; | 74 typedef StaticNodeTypeList<Node> StaticNodeList; |
| 75 class TypeConversions; | 75 class TypeConversions; |
| 76 | 76 |
| 77 class Internals FINAL : public GarbageCollectedFinalized<Internals>, public Scri
ptWrappable, public ContextLifecycleObserver { | 77 class Internals final : public GarbageCollectedFinalized<Internals>, public Scri
ptWrappable, public ContextLifecycleObserver { |
| 78 DEFINE_WRAPPERTYPEINFO(); | 78 DEFINE_WRAPPERTYPEINFO(); |
| 79 public: | 79 public: |
| 80 static Internals* create(Document*); | 80 static Internals* create(Document*); |
| 81 virtual ~Internals(); | 81 virtual ~Internals(); |
| 82 | 82 |
| 83 static void resetToConsistentState(Page*); | 83 static void resetToConsistentState(Page*); |
| 84 | 84 |
| 85 String elementRenderTreeAsText(Element*, ExceptionState&); | 85 String elementRenderTreeAsText(Element*, ExceptionState&); |
| 86 | 86 |
| 87 String address(Node*); | 87 String address(Node*); |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 335 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 336 | 336 |
| 337 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 337 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 338 Member<InternalRuntimeFlags> m_runtimeFlags; | 338 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 339 Member<InternalProfilers> m_profilers; | 339 Member<InternalProfilers> m_profilers; |
| 340 }; | 340 }; |
| 341 | 341 |
| 342 } // namespace blink | 342 } // namespace blink |
| 343 | 343 |
| 344 #endif // Internals_h | 344 #endif // Internals_h |
| OLD | NEW |