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