Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: Source/core/testing/Internals.h

Issue 334283004: Rename DOMWindow to LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/DummyPageHolder.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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
OLDNEW
« no previous file with comments | « Source/core/testing/DummyPageHolder.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698