| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); | 374 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); |
| 374 | 375 |
| 375 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); | 376 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); |
| 376 void registerURLSchemeAsBypassingContentSecurityPolicy( | 377 void registerURLSchemeAsBypassingContentSecurityPolicy( |
| 377 const String& scheme, | 378 const String& scheme, |
| 378 const Vector<String>& policyAreas); | 379 const Vector<String>& policyAreas); |
| 379 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( | 380 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( |
| 380 const String& scheme); | 381 const String& scheme); |
| 381 | 382 |
| 382 TypeConversions* typeConversions() const; | 383 TypeConversions* typeConversions() const; |
| 384 RecordTest* recordTest() const; |
| 383 DictionaryTest* dictionaryTest() const; | 385 DictionaryTest* dictionaryTest() const; |
| 384 UnionTypesTest* unionTypesTest() const; | 386 UnionTypesTest* unionTypesTest() const; |
| 385 OriginTrialsTest* originTrialsTest() const; | 387 OriginTrialsTest* originTrialsTest() const; |
| 386 CallbackFunctionTest* callbackFunctionTest() const; | 388 CallbackFunctionTest* callbackFunctionTest() const; |
| 387 | 389 |
| 388 Vector<String> getReferencedFilePaths() const; | 390 Vector<String> getReferencedFilePaths() const; |
| 389 | 391 |
| 390 void startStoringCompositedLayerDebugInfo(Document*, ExceptionState&); | 392 void startStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
| 391 void stopStoringCompositedLayerDebugInfo(Document*, ExceptionState&); | 393 void stopStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
| 392 | 394 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 const String& markerType, | 557 const String& markerType, |
| 556 unsigned index, | 558 unsigned index, |
| 557 ExceptionState&); | 559 ExceptionState&); |
| 558 Member<InternalRuntimeFlags> m_runtimeFlags; | 560 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 559 Member<Document> m_document; | 561 Member<Document> m_document; |
| 560 }; | 562 }; |
| 561 | 563 |
| 562 } // namespace blink | 564 } // namespace blink |
| 563 | 565 |
| 564 #endif // Internals_h | 566 #endif // Internals_h |
| OLD | NEW |