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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 | 270 |
271 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const; | 271 PassRefPtrWillBeRawPtr<MallocStatistics> mallocStatistics() const; |
272 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; | 272 PassRefPtrWillBeRawPtr<TypeConversions> typeConversions() const; |
273 | 273 |
274 Vector<String> getReferencedFilePaths() const; | 274 Vector<String> getReferencedFilePaths() const; |
275 | 275 |
276 void startTrackingRepaints(Document*, ExceptionState&); | 276 void startTrackingRepaints(Document*, ExceptionState&); |
277 void stopTrackingRepaints(Document*, ExceptionState&); | 277 void stopTrackingRepaints(Document*, ExceptionState&); |
278 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); | 278 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); |
279 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 279 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
| 280 void forceFullRepaint(Document*, ExceptionState&); |
280 | 281 |
281 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); | 282 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); |
282 PassRefPtrWillBeRawPtr<ClientRectList> nonDraggableRegions(Document*, Except
ionState&); | 283 PassRefPtrWillBeRawPtr<ClientRectList> nonDraggableRegions(Document*, Except
ionState&); |
283 | 284 |
284 PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) c
onst; | 285 PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) c
onst; |
285 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>)
const; | 286 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>)
const; |
286 | 287 |
287 String getCurrentCursorInfo(Document*, ExceptionState&); | 288 String getCurrentCursorInfo(Document*, ExceptionState&); |
288 | 289 |
289 String markerTextForListItem(Element*, ExceptionState&); | 290 String markerTextForListItem(Element*, ExceptionState&); |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); | 331 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag
gable, ExceptionState&); |
331 | 332 |
332 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 333 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
333 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; | 334 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; |
334 RefPtrWillBeMember<InternalProfilers> m_profilers; | 335 RefPtrWillBeMember<InternalProfilers> m_profilers; |
335 }; | 336 }; |
336 | 337 |
337 } // namespace WebCore | 338 } // namespace WebCore |
338 | 339 |
339 #endif | 340 #endif |
OLD | NEW |