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 30 matching lines...) Expand all Loading... |
41 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
42 | 42 |
43 namespace blink { | 43 namespace blink { |
44 | 44 |
45 class CanvasRenderingContext2D; | 45 class CanvasRenderingContext2D; |
46 class ClientRect; | 46 class ClientRect; |
47 class ClientRectList; | 47 class ClientRectList; |
48 class WebKitPoint; | 48 class WebKitPoint; |
49 class DOMStringList; | 49 class DOMStringList; |
50 class LocalDOMWindow; | 50 class LocalDOMWindow; |
| 51 class DictionaryTest; |
51 class Document; | 52 class Document; |
52 class DocumentMarker; | 53 class DocumentMarker; |
53 class Element; | 54 class Element; |
54 class ExceptionState; | 55 class ExceptionState; |
55 class ExecutionContext; | 56 class ExecutionContext; |
56 class GCObservation; | 57 class GCObservation; |
57 class HTMLMediaElement; | 58 class HTMLMediaElement; |
58 class InternalProfilers; | 59 class InternalProfilers; |
59 class InternalRuntimeFlags; | 60 class InternalRuntimeFlags; |
60 class InternalSettings; | 61 class InternalSettings; |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 void setIsCursorVisible(Document*, bool, ExceptionState&); | 255 void setIsCursorVisible(Document*, bool, ExceptionState&); |
255 | 256 |
256 void mediaPlayerRequestFullscreen(HTMLMediaElement*); | 257 void mediaPlayerRequestFullscreen(HTMLMediaElement*); |
257 | 258 |
258 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; | 259 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
; |
259 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); | 260 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String&
scheme); |
260 | 261 |
261 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const; | 262 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const; |
262 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; | 263 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; |
263 PrivateScriptTest* privateScriptTest() const; | 264 PrivateScriptTest* privateScriptTest() const; |
| 265 DictionaryTest* dictionaryTest() const; |
264 | 266 |
265 Vector<String> getReferencedFilePaths() const; | 267 Vector<String> getReferencedFilePaths() const; |
266 | 268 |
267 void startTrackingRepaints(Document*, ExceptionState&); | 269 void startTrackingRepaints(Document*, ExceptionState&); |
268 void stopTrackingRepaints(Document*, ExceptionState&); | 270 void stopTrackingRepaints(Document*, ExceptionState&); |
269 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); | 271 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); |
270 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 272 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
271 void forceFullRepaint(Document*, ExceptionState&); | 273 void forceFullRepaint(Document*, ExceptionState&); |
272 | 274 |
273 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); | 275 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); |
(...skipping 54 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 blink | 337 } // namespace blink |
336 | 338 |
337 #endif | 339 #endif |
OLD | NEW |