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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 class InternalSettings; | 64 class InternalSettings; |
65 class LayerRectList; | 65 class LayerRectList; |
66 class LocalDOMWindow; | 66 class LocalDOMWindow; |
67 class LocalFrame; | 67 class LocalFrame; |
68 class Location; | 68 class Location; |
69 class Node; | 69 class Node; |
70 class OriginTrialsTest; | 70 class OriginTrialsTest; |
71 class Page; | 71 class Page; |
72 class Range; | 72 class Range; |
73 class RecordTest; | 73 class RecordTest; |
| 74 class SequenceTest; |
74 class SerializedScriptValue; | 75 class SerializedScriptValue; |
75 class ShadowRoot; | 76 class ShadowRoot; |
76 class TypeConversions; | 77 class TypeConversions; |
77 class UnionTypesTest; | 78 class UnionTypesTest; |
78 class ScrollState; | 79 class ScrollState; |
79 template <typename NodeType> | 80 template <typename NodeType> |
80 class StaticNodeTypeList; | 81 class StaticNodeTypeList; |
81 using StaticNodeList = StaticNodeTypeList<Node>; | 82 using StaticNodeList = StaticNodeTypeList<Node>; |
82 | 83 |
83 class Internals final : public GarbageCollected<Internals>, | 84 class Internals final : public GarbageCollected<Internals>, |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 | 378 |
378 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); | 379 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); |
379 void registerURLSchemeAsBypassingContentSecurityPolicy( | 380 void registerURLSchemeAsBypassingContentSecurityPolicy( |
380 const String& scheme, | 381 const String& scheme, |
381 const Vector<String>& policy_areas); | 382 const Vector<String>& policy_areas); |
382 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( | 383 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( |
383 const String& scheme); | 384 const String& scheme); |
384 | 385 |
385 TypeConversions* typeConversions() const; | 386 TypeConversions* typeConversions() const; |
386 RecordTest* recordTest() const; | 387 RecordTest* recordTest() const; |
| 388 SequenceTest* sequenceTest() const; |
387 DictionaryTest* dictionaryTest() const; | 389 DictionaryTest* dictionaryTest() const; |
388 UnionTypesTest* unionTypesTest() const; | 390 UnionTypesTest* unionTypesTest() const; |
389 OriginTrialsTest* originTrialsTest() const; | 391 OriginTrialsTest* originTrialsTest() const; |
390 CallbackFunctionTest* callbackFunctionTest() const; | 392 CallbackFunctionTest* callbackFunctionTest() const; |
391 | 393 |
392 Vector<String> getReferencedFilePaths() const; | 394 Vector<String> getReferencedFilePaths() const; |
393 | 395 |
394 void startStoringCompositedLayerDebugInfo(Document*, ExceptionState&); | 396 void startStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
395 void stopStoringCompositedLayerDebugInfo(Document*, ExceptionState&); | 397 void stopStoringCompositedLayerDebugInfo(Document*, ExceptionState&); |
396 | 398 |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 const String& marker_type, | 564 const String& marker_type, |
563 unsigned index, | 565 unsigned index, |
564 ExceptionState&); | 566 ExceptionState&); |
565 Member<InternalRuntimeFlags> runtime_flags_; | 567 Member<InternalRuntimeFlags> runtime_flags_; |
566 Member<Document> document_; | 568 Member<Document> document_; |
567 }; | 569 }; |
568 | 570 |
569 } // namespace blink | 571 } // namespace blink |
570 | 572 |
571 #endif // Internals_h | 573 #endif // Internals_h |
OLD | NEW |