| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 | 380 |
| 381 TypeConversions* typeConversions() const; | 381 TypeConversions* typeConversions() const; |
| 382 PrivateScriptTest* privateScriptTest() const; | 382 PrivateScriptTest* privateScriptTest() const; |
| 383 DictionaryTest* dictionaryTest() const; | 383 DictionaryTest* dictionaryTest() const; |
| 384 UnionTypesTest* unionTypesTest() const; | 384 UnionTypesTest* unionTypesTest() const; |
| 385 OriginTrialsTest* originTrialsTest() const; | 385 OriginTrialsTest* originTrialsTest() const; |
| 386 CallbackFunctionTest* callbackFunctionTest() const; | 386 CallbackFunctionTest* callbackFunctionTest() const; |
| 387 | 387 |
| 388 Vector<String> getReferencedFilePaths() const; | 388 Vector<String> getReferencedFilePaths() const; |
| 389 | 389 |
| 390 void startStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
| 391 void stopStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
| 392 |
| 390 void startTrackingRepaints(Document*, ExceptionState&); | 393 void startTrackingRepaints(Document*, ExceptionState&); |
| 391 void stopTrackingRepaints(Document*, ExceptionState&); | 394 void stopTrackingRepaints(Document*, ExceptionState&); |
| 392 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks( | 395 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks( |
| 393 Node*, | 396 Node*, |
| 394 ExceptionState&); | 397 ExceptionState&); |
| 395 void forceFullRepaint(Document*, ExceptionState&); | 398 void forceFullRepaint(Document*, ExceptionState&); |
| 396 | 399 |
| 397 ClientRectList* draggableRegions(Document*, ExceptionState&); | 400 ClientRectList* draggableRegions(Document*, ExceptionState&); |
| 398 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); | 401 ClientRectList* nonDraggableRegions(Document*, ExceptionState&); |
| 399 | 402 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 ExceptionState&); | 543 ExceptionState&); |
| 541 Member<InternalRuntimeFlags> m_runtimeFlags; | 544 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 542 Member<Document> m_document; | 545 Member<Document> m_document; |
| 543 | 546 |
| 544 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 547 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 545 }; | 548 }; |
| 546 | 549 |
| 547 } // namespace blink | 550 } // namespace blink |
| 548 | 551 |
| 549 #endif // Internals_h | 552 #endif // Internals_h |
| OLD | NEW |