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 27 matching lines...) Expand all Loading... |
38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
39 #include "wtf/RefCounted.h" | 39 #include "wtf/RefCounted.h" |
40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
41 | 41 |
42 namespace WebCore { | 42 namespace WebCore { |
43 | 43 |
44 class ClientRect; | 44 class ClientRect; |
45 class ClientRectList; | 45 class ClientRectList; |
46 class DOMPoint; | 46 class DOMPoint; |
47 class DOMStringList; | 47 class DOMStringList; |
48 class DOMWindow; | 48 class LocalDOMWindow; |
49 class Document; | 49 class Document; |
50 class DocumentMarker; | 50 class DocumentMarker; |
51 class Element; | 51 class Element; |
52 class ExceptionState; | 52 class ExceptionState; |
53 class ExecutionContext; | 53 class ExecutionContext; |
54 class GCObservation; | 54 class GCObservation; |
55 class HTMLMediaElement; | 55 class HTMLMediaElement; |
56 class InternalProfilers; | 56 class InternalProfilers; |
57 class InternalRuntimeFlags; | 57 class InternalRuntimeFlags; |
58 class InternalSettings; | 58 class InternalSettings; |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 | 229 |
230 void garbageCollectDocumentResources(Document*, ExceptionState&) const; | 230 void garbageCollectDocumentResources(Document*, ExceptionState&) const; |
231 void evictAllResources() const; | 231 void evictAllResources() const; |
232 | 232 |
233 void allowRoundingHacks() const; | 233 void allowRoundingHacks() const; |
234 | 234 |
235 unsigned numberOfLiveNodes() const; | 235 unsigned numberOfLiveNodes() const; |
236 unsigned numberOfLiveDocuments() const; | 236 unsigned numberOfLiveDocuments() const; |
237 String dumpRefCountedInstanceCounts() const; | 237 String dumpRefCountedInstanceCounts() const; |
238 Vector<String> consoleMessageArgumentCounts(Document*) const; | 238 Vector<String> consoleMessageArgumentCounts(Document*) const; |
239 PassRefPtrWillBeRawPtr<DOMWindow> openDummyInspectorFrontend(const String& u
rl); | 239 PassRefPtrWillBeRawPtr<LocalDOMWindow> openDummyInspectorFrontend(const Stri
ng& url); |
240 void closeDummyInspectorFrontend(); | 240 void closeDummyInspectorFrontend(); |
241 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); | 241 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u
nsigned long maxDeadBytes, unsigned long totalBytes); |
242 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionState&); | 242 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in
t maximumSingleResourceContentSize, ExceptionState&); |
243 | 243 |
244 String counterValue(Element*); | 244 String counterValue(Element*); |
245 | 245 |
246 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); | 246 int pageNumber(Element*, float pageWidth = 800, float pageHeight = 600); |
247 Vector<String> shortcutIconURLs(Document*) const; | 247 Vector<String> shortcutIconURLs(Document*) const; |
248 Vector<String> allIconURLs(Document*) const; | 248 Vector<String> allIconURLs(Document*) const; |
249 | 249 |
(...skipping 80 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 |