| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 class HTMLMediaElement; | 56 class HTMLMediaElement; |
| 57 class InternalProfilers; | 57 class InternalProfilers; |
| 58 class InternalRuntimeFlags; | 58 class InternalRuntimeFlags; |
| 59 class InternalSettings; | 59 class InternalSettings; |
| 60 class LayerRectList; | 60 class LayerRectList; |
| 61 class LocalFrame; | 61 class LocalFrame; |
| 62 class MallocStatistics; | 62 class MallocStatistics; |
| 63 class Node; | 63 class Node; |
| 64 class Page; | 64 class Page; |
| 65 class PagePopupController; | 65 class PagePopupController; |
| 66 class PrivateScriptTest; |
| 66 class Range; | 67 class Range; |
| 67 class SerializedScriptValue; | 68 class SerializedScriptValue; |
| 68 class StaticNodeList; | 69 class StaticNodeList; |
| 69 class ShadowRoot; | 70 class ShadowRoot; |
| 70 class TypeConversions; | 71 class TypeConversions; |
| 71 | 72 |
| 72 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna
ls>, public ContextLifecycleObserver { | 73 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna
ls>, public ContextLifecycleObserver { |
| 73 public: | 74 public: |
| 74 static PassRefPtrWillBeRawPtr<Internals> create(Document*); | 75 static PassRefPtrWillBeRawPtr<Internals> create(Document*); |
| 75 virtual ~Internals(); | 76 virtual ~Internals(); |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 void webkitWillExitFullScreenForElement(Document*, Element*); | 258 void webkitWillExitFullScreenForElement(Document*, Element*); |
| 258 void webkitDidExitFullScreenForElement(Document*, Element*); | 259 void webkitDidExitFullScreenForElement(Document*, Element*); |
| 259 | 260 |
| 260 void mediaPlayerRequestFullscreen(HTMLMediaElement*); | 261 void mediaPlayerRequestFullscreen(HTMLMediaElement*); |
| 261 | 262 |
| 262 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 263 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
| 263 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 264 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
| 264 | 265 |
| 265 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const; | 266 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const; |
| 266 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; | 267 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; |
| 268 PrivateScriptTest* privateScriptTest() const; |
| 267 | 269 |
| 268 Vector<String> getReferencedFilePaths() const; | 270 Vector<String> getReferencedFilePaths() const; |
| 269 | 271 |
| 270 void startTrackingRepaints(Document*, ExceptionState&); | 272 void startTrackingRepaints(Document*, ExceptionState&); |
| 271 void stopTrackingRepaints(Document*, ExceptionState&); | 273 void stopTrackingRepaints(Document*, ExceptionState&); |
| 272 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); | 274 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); |
| 273 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 275 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
| 274 void forceFullRepaint(Document*, ExceptionState&); | 276 void forceFullRepaint(Document*, ExceptionState&); |
| 275 | 277 |
| 276 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); | 278 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 330 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 329 | 331 |
| 330 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 332 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 331 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 333 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
| 332 RefPtrWillBeMember<InternalProfilers> m_profilers; | 334 RefPtrWillBeMember<InternalProfilers> m_profilers; |
| 333 }; | 335 }; |
| 334 | 336 |
| 335 } // namespace WebCore | 337 } // namespace WebCore |
| 336 | 338 |
| 337 #endif | 339 #endif |
| OLD | NEW |