| 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 28 matching lines...) Expand all Loading... |
| 39 #include "wtf/PassRefPtr.h" | 39 #include "wtf/PassRefPtr.h" |
| 40 #include "wtf/RefCounted.h" | 40 #include "wtf/RefCounted.h" |
| 41 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
| 42 | 42 |
| 43 namespace WebCore { | 43 namespace WebCore { |
| 44 | 44 |
| 45 class ClientRect; | 45 class ClientRect; |
| 46 class ClientRectList; | 46 class ClientRectList; |
| 47 class DOMPoint; | 47 class DOMPoint; |
| 48 class DOMStringList; | 48 class DOMStringList; |
| 49 class DOMWindow; | 49 class LocalDOMWindow; |
| 50 class Document; | 50 class Document; |
| 51 class DocumentMarker; | 51 class DocumentMarker; |
| 52 class Element; | 52 class Element; |
| 53 class ExceptionState; | 53 class ExceptionState; |
| 54 class ExecutionContext; | 54 class ExecutionContext; |
| 55 class GCObservation; | 55 class GCObservation; |
| 56 class HTMLMediaElement; | 56 class HTMLMediaElement; |
| 57 class InternalProfilers; | 57 class InternalProfilers; |
| 58 class InternalRuntimeFlags; | 58 class InternalRuntimeFlags; |
| 59 class InternalSettings; | 59 class InternalSettings; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 | 232 |
| 233 void garbageCollectDocumentResources(Document*, ExceptionState&) const; | 233 void garbageCollectDocumentResources(Document*, ExceptionState&) const; |
| 234 void evictAllResources() const; | 234 void evictAllResources() const; |
| 235 | 235 |
| 236 void allowRoundingHacks() const; | 236 void allowRoundingHacks() const; |
| 237 | 237 |
| 238 unsigned numberOfLiveNodes() const; | 238 unsigned numberOfLiveNodes() const; |
| 239 unsigned numberOfLiveDocuments() const; | 239 unsigned numberOfLiveDocuments() const; |
| 240 String dumpRefCountedInstanceCounts() const; | 240 String dumpRefCountedInstanceCounts() const; |
| 241 Vector<String> consoleMessageArgumentCounts(Document*) const; | 241 Vector<String> consoleMessageArgumentCounts(Document*) const; |
| 242 PassRefPtrWillBeRawPtr<DOMWindow> openDummyInspectorFrontend(const String& u
rl); | 242 PassRefPtrWillBeRawPtr<LocalDOMWindow> openDummyInspectorFrontend(const Stri
ng& url); |
| 243 void closeDummyInspectorFrontend(); | 243 void closeDummyInspectorFrontend(); |
| 244 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); | 244 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); |
| 245 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionState&); | 245 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionState&); |
| 246 | 246 |
| 247 String counterValue(Element*); | 247 String counterValue(Element*); |
| 248 | 248 |
| 249 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); | 249 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); |
| 250 Vector<String> shortcutIconURLs(Document*) const; | 250 Vector<String> shortcutIconURLs(Document*) const; |
| 251 Vector<String> allIconURLs(Document*) const; | 251 Vector<String> allIconURLs(Document*) const; |
| 252 | 252 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 330 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
| 331 | 331 |
| 332 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 332 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 333 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 333 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
| 334 RefPtrWillBeMember<InternalProfilers> m_profilers; | 334 RefPtrWillBeMember<InternalProfilers> m_profilers; |
| 335 }; | 335 }; |
| 336 | 336 |
| 337 } // namespace WebCore | 337 } // namespace WebCore |
| 338 | 338 |
| 339 #endif | 339 #endif |
| OLD | NEW |