| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 String elementLayoutTreeAsText(Element*, ExceptionState&); | 84 String elementLayoutTreeAsText(Element*, ExceptionState&); |
| 85 | 85 |
| 86 String address(Node*); | 86 String address(Node*); |
| 87 | 87 |
| 88 GCObservation* observeGC(ScriptValue); | 88 GCObservation* observeGC(ScriptValue); |
| 89 | 89 |
| 90 bool isPreloaded(const String& url); | 90 bool isPreloaded(const String& url); |
| 91 bool isPreloadedBy(const String& url, Document*); | 91 bool isPreloadedBy(const String& url, Document*); |
| 92 bool isLoadingFromMemoryCache(const String& url); | 92 bool isLoadingFromMemoryCache(const String& url); |
| 93 int getResourcePriority(const String& url, Document*); |
| 93 | 94 |
| 94 bool isSharingStyle(Element*, Element*) const; | 95 bool isSharingStyle(Element*, Element*) const; |
| 95 | 96 |
| 96 CSSStyleDeclaration* computedStyleIncludingVisitedInfo(Node*) const; | 97 CSSStyleDeclaration* computedStyleIncludingVisitedInfo(Node*) const; |
| 97 | 98 |
| 98 ShadowRoot* createUserAgentShadowRoot(Element* host); | 99 ShadowRoot* createUserAgentShadowRoot(Element* host); |
| 99 | 100 |
| 100 ShadowRoot* shadowRoot(Element* host); | 101 ShadowRoot* shadowRoot(Element* host); |
| 101 ShadowRoot* youngestShadowRoot(Element* host); | 102 ShadowRoot* youngestShadowRoot(Element* host); |
| 102 ShadowRoot* oldestShadowRoot(Element* host); | 103 ShadowRoot* oldestShadowRoot(Element* host); |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 | 417 |
| 417 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); | 418 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex
ceptionState&); |
| 418 Member<InternalRuntimeFlags> m_runtimeFlags; | 419 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 419 | 420 |
| 420 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 421 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 421 }; | 422 }; |
| 422 | 423 |
| 423 } // namespace blink | 424 } // namespace blink |
| 424 | 425 |
| 425 #endif // Internals_h | 426 #endif // Internals_h |
| OLD | NEW |