| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 String elementLayoutTreeAsText(Element*, ExceptionState&); | 91 String elementLayoutTreeAsText(Element*, ExceptionState&); |
| 92 | 92 |
| 93 String address(Node*); | 93 String address(Node*); |
| 94 | 94 |
| 95 GCObservation* observeGC(ScriptValue); | 95 GCObservation* observeGC(ScriptValue); |
| 96 | 96 |
| 97 bool isPreloaded(const String& url); | 97 bool isPreloaded(const String& url); |
| 98 bool isPreloadedBy(const String& url, Document*); | 98 bool isPreloadedBy(const String& url, Document*); |
| 99 bool isLoadingFromMemoryCache(const String& url); | 99 bool isLoadingFromMemoryCache(const String& url); |
| 100 int getResourcePriority(const String& url, Document*); | 100 int getResourcePriority(const String& url, Document*); |
| 101 String getResourceHeader(const String& url, const String& header, Document*); |
| 101 | 102 |
| 102 bool isSharingStyle(Element*, Element*) const; | 103 bool isSharingStyle(Element*, Element*) const; |
| 103 | 104 |
| 104 CSSStyleDeclaration* computedStyleIncludingVisitedInfo(Node*) const; | 105 CSSStyleDeclaration* computedStyleIncludingVisitedInfo(Node*) const; |
| 105 | 106 |
| 106 ShadowRoot* createUserAgentShadowRoot(Element* host); | 107 ShadowRoot* createUserAgentShadowRoot(Element* host); |
| 107 | 108 |
| 108 ShadowRoot* shadowRoot(Element* host); | 109 ShadowRoot* shadowRoot(Element* host); |
| 109 ShadowRoot* youngestShadowRoot(Element* host); | 110 ShadowRoot* youngestShadowRoot(Element* host); |
| 110 ShadowRoot* oldestShadowRoot(Element* host); | 111 ShadowRoot* oldestShadowRoot(Element* host); |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 unsigned index, | 538 unsigned index, |
| 538 ExceptionState&); | 539 ExceptionState&); |
| 539 Member<InternalRuntimeFlags> m_runtimeFlags; | 540 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 540 | 541 |
| 541 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 542 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 542 }; | 543 }; |
| 543 | 544 |
| 544 } // namespace blink | 545 } // namespace blink |
| 545 | 546 |
| 546 #endif // Internals_h | 547 #endif // Internals_h |
| OLD | NEW |