| 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 20 matching lines...) Expand all Loading... |
| 31 #include "bindings/core/v8/ScriptFunction.h" | 31 #include "bindings/core/v8/ScriptFunction.h" |
| 32 #include "bindings/core/v8/ScriptPromise.h" | 32 #include "bindings/core/v8/ScriptPromise.h" |
| 33 #include "bindings/core/v8/ScriptPromiseResolver.h" | 33 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 34 #include "bindings/core/v8/SerializedScriptValue.h" | 34 #include "bindings/core/v8/SerializedScriptValue.h" |
| 35 #include "bindings/core/v8/SerializedScriptValueFactory.h" | 35 #include "bindings/core/v8/SerializedScriptValueFactory.h" |
| 36 #include "bindings/core/v8/V8IteratorResultValue.h" | 36 #include "bindings/core/v8/V8IteratorResultValue.h" |
| 37 #include "bindings/core/v8/V8ThrowException.h" | 37 #include "bindings/core/v8/V8ThrowException.h" |
| 38 #include "core/HTMLNames.h" | 38 #include "core/HTMLNames.h" |
| 39 #include "core/SVGNames.h" | 39 #include "core/SVGNames.h" |
| 40 #include "core/animation/DocumentTimeline.h" | 40 #include "core/animation/DocumentTimeline.h" |
| 41 #include "core/css/StyleSheetContents.h" | |
| 42 #include "core/css/resolver/StyleResolver.h" | |
| 43 #include "core/css/resolver/StyleResolverStats.h" | |
| 44 #include "core/css/resolver/ViewportStyleResolver.h" | |
| 45 #include "core/dom/ClientRect.h" | 41 #include "core/dom/ClientRect.h" |
| 46 #include "core/dom/ClientRectList.h" | 42 #include "core/dom/ClientRectList.h" |
| 47 #include "core/dom/DOMArrayBuffer.h" | 43 #include "core/dom/DOMArrayBuffer.h" |
| 48 #include "core/dom/DOMNodeIds.h" | 44 #include "core/dom/DOMNodeIds.h" |
| 49 #include "core/dom/DOMPoint.h" | 45 #include "core/dom/DOMPoint.h" |
| 50 #include "core/dom/DOMStringList.h" | 46 #include "core/dom/DOMStringList.h" |
| 51 #include "core/dom/Document.h" | 47 #include "core/dom/Document.h" |
| 52 #include "core/dom/Element.h" | 48 #include "core/dom/Element.h" |
| 53 #include "core/dom/ExceptionCode.h" | 49 #include "core/dom/ExceptionCode.h" |
| 54 #include "core/dom/Iterator.h" | 50 #include "core/dom/Iterator.h" |
| (...skipping 2976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3031 return ClientRect::create(); | 3027 return ClientRect::create(); |
| 3032 | 3028 |
| 3033 return ClientRect::create(FloatRect(node->layoutObject()->visualRect())); | 3029 return ClientRect::create(FloatRect(node->layoutObject()->visualRect())); |
| 3034 } | 3030 } |
| 3035 | 3031 |
| 3036 void Internals::crash() { | 3032 void Internals::crash() { |
| 3037 CHECK(false) << "Intentional crash"; | 3033 CHECK(false) << "Intentional crash"; |
| 3038 } | 3034 } |
| 3039 | 3035 |
| 3040 } // namespace blink | 3036 } // namespace blink |
| OLD | NEW |