| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 261 |
| 262 TypeConversions* typeConversions() const; | 262 TypeConversions* typeConversions() const; |
| 263 PrivateScriptTest* privateScriptTest() const; | 263 PrivateScriptTest* privateScriptTest() const; |
| 264 DictionaryTest* dictionaryTest() const; | 264 DictionaryTest* dictionaryTest() const; |
| 265 UnionTypesTest* unionTypesTest() const; | 265 UnionTypesTest* unionTypesTest() const; |
| 266 | 266 |
| 267 Vector<String> getReferencedFilePaths() const; | 267 Vector<String> getReferencedFilePaths() const; |
| 268 | 268 |
| 269 void startTrackingRepaints(Document*, ExceptionState&); | 269 void startTrackingRepaints(Document*, ExceptionState&); |
| 270 void stopTrackingRepaints(Document*, ExceptionState&); | 270 void stopTrackingRepaints(Document*, ExceptionState&); |
| 271 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(ExceptionStat
e&); | |
| 272 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); | 271 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*, Except
ionState&); |
| 273 void forceFullRepaint(Document*, ExceptionState&); | 272 void forceFullRepaint(Document*, ExceptionState&); |
| 274 | 273 |
| 275 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); | 274 PassRefPtrWillBeRawPtr<ClientRectList> draggableRegions(Document*, Exception
State&); |
| 276 PassRefPtrWillBeRawPtr<ClientRectList> nonDraggableRegions(Document*, Except
ionState&); | 275 PassRefPtrWillBeRawPtr<ClientRectList> nonDraggableRegions(Document*, Except
ionState&); |
| 277 | 276 |
| 278 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>
) const; | 277 PassRefPtr<DOMArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>
) const; |
| 279 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe
r>) const; | 278 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<DOMArrayBuffe
r>) const; |
| 280 | 279 |
| 281 String getCurrentCursorInfo(Document*, ExceptionState&); | 280 String getCurrentCursorInfo(Document*, ExceptionState&); |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 | 350 |
| 352 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 351 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 353 Member<InternalRuntimeFlags> m_runtimeFlags; | 352 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 354 | 353 |
| 355 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 354 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 356 }; | 355 }; |
| 357 | 356 |
| 358 } // namespace blink | 357 } // namespace blink |
| 359 | 358 |
| 360 #endif // Internals_h | 359 #endif // Internals_h |
| OLD | NEW |