| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 class InternalRuntimeFlags; | 61 class InternalRuntimeFlags; |
| 62 class InternalSettings; | 62 class InternalSettings; |
| 63 class LayerRectList; | 63 class LayerRectList; |
| 64 class LocalDOMWindow; | 64 class LocalDOMWindow; |
| 65 class LocalFrame; | 65 class LocalFrame; |
| 66 class Location; | 66 class Location; |
| 67 class Node; | 67 class Node; |
| 68 class OriginTrialsTest; | 68 class OriginTrialsTest; |
| 69 class Page; | 69 class Page; |
| 70 class Range; | 70 class Range; |
| 71 class RecordTest; |
| 71 class SerializedScriptValue; | 72 class SerializedScriptValue; |
| 72 class ShadowRoot; | 73 class ShadowRoot; |
| 73 class TypeConversions; | 74 class TypeConversions; |
| 74 class UnionTypesTest; | 75 class UnionTypesTest; |
| 75 class ScrollState; | 76 class ScrollState; |
| 76 template <typename NodeType> | 77 template <typename NodeType> |
| 77 class StaticNodeTypeList; | 78 class StaticNodeTypeList; |
| 78 using StaticNodeList = StaticNodeTypeList<Node>; | 79 using StaticNodeList = StaticNodeTypeList<Node>; |
| 79 | 80 |
| 80 class Internals final : public GarbageCollected<Internals>, | 81 class Internals final : public GarbageCollected<Internals>, |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); | 372 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
| 372 | 373 |
| 373 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); | 374 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); |
| 374 void registerURLSchemeAsBypassingContentSecurityPolicy( | 375 void registerURLSchemeAsBypassingContentSecurityPolicy( |
| 375 const String& scheme, | 376 const String& scheme, |
| 376 const Vector<String>& policyAreas); | 377 const Vector<String>& policyAreas); |
| 377 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( | 378 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( |
| 378 const String& scheme); | 379 const String& scheme); |
| 379 | 380 |
| 380 TypeConversions* typeConversions() const; | 381 TypeConversions* typeConversions() const; |
| 382 RecordTest* recordTest() const; |
| 381 DictionaryTest* dictionaryTest() const; | 383 DictionaryTest* dictionaryTest() const; |
| 382 UnionTypesTest* unionTypesTest() const; | 384 UnionTypesTest* unionTypesTest() const; |
| 383 OriginTrialsTest* originTrialsTest() const; | 385 OriginTrialsTest* originTrialsTest() const; |
| 384 CallbackFunctionTest* callbackFunctionTest() const; | 386 CallbackFunctionTest* callbackFunctionTest() const; |
| 385 | 387 |
| 386 Vector<String> getReferencedFilePaths() const; | 388 Vector<String> getReferencedFilePaths() const; |
| 387 | 389 |
| 388 void startStoringCompositedLayerDebugInfo(Document*, ExceptionState&); | 390 void startStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
| 389 void stopStoringCompositedLayerDebugInfo(Document*, ExceptionState&); | 391 void stopStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
| 390 | 392 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 const String& markerType, | 555 const String& markerType, |
| 554 unsigned index, | 556 unsigned index, |
| 555 ExceptionState&); | 557 ExceptionState&); |
| 556 Member<InternalRuntimeFlags> m_runtimeFlags; | 558 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 557 Member<Document> m_document; | 559 Member<Document> m_document; |
| 558 }; | 560 }; |
| 559 | 561 |
| 560 } // namespace blink | 562 } // namespace blink |
| 561 | 563 |
| 562 #endif // Internals_h | 564 #endif // Internals_h |
| OLD | NEW |