| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 class HTMLSelectElement; | 59 class HTMLSelectElement; |
| 60 class InternalRuntimeFlags; | 60 class InternalRuntimeFlags; |
| 61 class InternalSettings; | 61 class InternalSettings; |
| 62 class LayerRectList; | 62 class LayerRectList; |
| 63 class LocalDOMWindow; | 63 class LocalDOMWindow; |
| 64 class LocalFrame; | 64 class LocalFrame; |
| 65 class Location; | 65 class Location; |
| 66 class Node; | 66 class Node; |
| 67 class OriginTrialsTest; | 67 class OriginTrialsTest; |
| 68 class Page; | 68 class Page; |
| 69 class PrivateScriptTest; | |
| 70 class Range; | 69 class Range; |
| 71 class SerializedScriptValue; | 70 class SerializedScriptValue; |
| 72 class ShadowRoot; | 71 class ShadowRoot; |
| 73 class TypeConversions; | 72 class TypeConversions; |
| 74 class UnionTypesTest; | 73 class UnionTypesTest; |
| 75 class ScrollState; | 74 class ScrollState; |
| 76 template <typename NodeType> | 75 template <typename NodeType> |
| 77 class StaticNodeTypeList; | 76 class StaticNodeTypeList; |
| 78 using StaticNodeList = StaticNodeTypeList<Node>; | 77 using StaticNodeList = StaticNodeTypeList<Node>; |
| 79 | 78 |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); | 371 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
| 373 | 372 |
| 374 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); | 373 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); |
| 375 void registerURLSchemeAsBypassingContentSecurityPolicy( | 374 void registerURLSchemeAsBypassingContentSecurityPolicy( |
| 376 const String& scheme, | 375 const String& scheme, |
| 377 const Vector<String>& policyAreas); | 376 const Vector<String>& policyAreas); |
| 378 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( | 377 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( |
| 379 const String& scheme); | 378 const String& scheme); |
| 380 | 379 |
| 381 TypeConversions* typeConversions() const; | 380 TypeConversions* typeConversions() const; |
| 382 PrivateScriptTest* privateScriptTest() const; | |
| 383 DictionaryTest* dictionaryTest() const; | 381 DictionaryTest* dictionaryTest() const; |
| 384 UnionTypesTest* unionTypesTest() const; | 382 UnionTypesTest* unionTypesTest() const; |
| 385 OriginTrialsTest* originTrialsTest() const; | 383 OriginTrialsTest* originTrialsTest() const; |
| 386 CallbackFunctionTest* callbackFunctionTest() const; | 384 CallbackFunctionTest* callbackFunctionTest() const; |
| 387 | 385 |
| 388 Vector<String> getReferencedFilePaths() const; | 386 Vector<String> getReferencedFilePaths() const; |
| 389 | 387 |
| 390 void startTrackingRepaints(Document*, ExceptionState&); | 388 void startTrackingRepaints(Document*, ExceptionState&); |
| 391 void stopTrackingRepaints(Document*, ExceptionState&); | 389 void stopTrackingRepaints(Document*, ExceptionState&); |
| 392 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks( | 390 void updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks( |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 ExceptionState&); | 538 ExceptionState&); |
| 541 Member<InternalRuntimeFlags> m_runtimeFlags; | 539 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 542 Member<Document> m_document; | 540 Member<Document> m_document; |
| 543 | 541 |
| 544 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 542 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 545 }; | 543 }; |
| 546 | 544 |
| 547 } // namespace blink | 545 } // namespace blink |
| 548 | 546 |
| 549 #endif // Internals_h | 547 #endif // Internals_h |
| OLD | NEW |