| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 static void resetToConsistentState(Page*); | 94 static void resetToConsistentState(Page*); |
| 95 | 95 |
| 96 String elementLayoutTreeAsText(Element*, ExceptionState&); | 96 String elementLayoutTreeAsText(Element*, ExceptionState&); |
| 97 | 97 |
| 98 String address(Node*); | 98 String address(Node*); |
| 99 | 99 |
| 100 GCObservation* observeGC(ScriptValue); | 100 GCObservation* observeGC(ScriptValue); |
| 101 | 101 |
| 102 bool isPreloaded(const String& url); | 102 bool isPreloaded(const String& url); |
| 103 bool isPreloadedBy(const String& url, Document*); | 103 bool isPreloadedBy(const String& url, Document*); |
| 104 bool isLoading(const String& url); |
| 104 bool isLoadingFromMemoryCache(const String& url); | 105 bool isLoadingFromMemoryCache(const String& url); |
| 105 int getResourcePriority(const String& url, Document*); | 106 int getResourcePriority(const String& url, Document*); |
| 106 String getResourceHeader(const String& url, const String& header, Document*); | 107 String getResourceHeader(const String& url, const String& header, Document*); |
| 107 | 108 |
| 108 bool isSharingStyle(Element*, Element*) const; | 109 bool isSharingStyle(Element*, Element*) const; |
| 109 | 110 |
| 110 CSSStyleDeclaration* computedStyleIncludingVisitedInfo(Node*) const; | 111 CSSStyleDeclaration* computedStyleIncludingVisitedInfo(Node*) const; |
| 111 | 112 |
| 112 ShadowRoot* createUserAgentShadowRoot(Element* host); | 113 ShadowRoot* createUserAgentShadowRoot(Element* host); |
| 113 | 114 |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 unsigned index, | 543 unsigned index, |
| 543 ExceptionState&); | 544 ExceptionState&); |
| 544 Member<InternalRuntimeFlags> m_runtimeFlags; | 545 Member<InternalRuntimeFlags> m_runtimeFlags; |
| 545 | 546 |
| 546 IterationSource* startIteration(ScriptState*, ExceptionState&) override; | 547 IterationSource* startIteration(ScriptState*, ExceptionState&) override; |
| 547 }; | 548 }; |
| 548 | 549 |
| 549 } // namespace blink | 550 } // namespace blink |
| 550 | 551 |
| 551 #endif // Internals_h | 552 #endif // Internals_h |
| OLD | NEW |