| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 #include "core/testing/MockHyphenation.h" | 126 #include "core/testing/MockHyphenation.h" |
| 127 #include "core/testing/PrivateScriptTest.h" | 127 #include "core/testing/PrivateScriptTest.h" |
| 128 #include "core/testing/TypeConversions.h" | 128 #include "core/testing/TypeConversions.h" |
| 129 #include "core/testing/UnionTypesTest.h" | 129 #include "core/testing/UnionTypesTest.h" |
| 130 #include "core/workers/WorkerThread.h" | 130 #include "core/workers/WorkerThread.h" |
| 131 #include "gpu/command_buffer/client/gles2_interface.h" | 131 #include "gpu/command_buffer/client/gles2_interface.h" |
| 132 #include "platform/Cursor.h" | 132 #include "platform/Cursor.h" |
| 133 #include "platform/Language.h" | 133 #include "platform/Language.h" |
| 134 #include "platform/LayoutLocale.h" | 134 #include "platform/LayoutLocale.h" |
| 135 #include "platform/RuntimeEnabledFeatures.h" | 135 #include "platform/RuntimeEnabledFeatures.h" |
| 136 #include "platform/TraceEvent.h" | |
| 137 #include "platform/geometry/IntRect.h" | 136 #include "platform/geometry/IntRect.h" |
| 138 #include "platform/geometry/LayoutRect.h" | 137 #include "platform/geometry/LayoutRect.h" |
| 139 #include "platform/graphics/GraphicsLayer.h" | 138 #include "platform/graphics/GraphicsLayer.h" |
| 140 #include "platform/heap/Handle.h" | 139 #include "platform/heap/Handle.h" |
| 141 #include "platform/scroll/ProgrammaticScrollAnimator.h" | 140 #include "platform/scroll/ProgrammaticScrollAnimator.h" |
| 141 #include "platform/tracing/TraceEvent.h" |
| 142 #include "platform/weborigin/SchemeRegistry.h" | 142 #include "platform/weborigin/SchemeRegistry.h" |
| 143 #include "public/platform/Platform.h" | 143 #include "public/platform/Platform.h" |
| 144 #include "public/platform/WebConnectionType.h" | 144 #include "public/platform/WebConnectionType.h" |
| 145 #include "public/platform/WebGraphicsContext3DProvider.h" | 145 #include "public/platform/WebGraphicsContext3DProvider.h" |
| 146 #include "public/platform/WebLayer.h" | 146 #include "public/platform/WebLayer.h" |
| 147 #include "wtf/InstanceCounter.h" | 147 #include "wtf/InstanceCounter.h" |
| 148 #include "wtf/PtrUtil.h" | 148 #include "wtf/PtrUtil.h" |
| 149 #include "wtf/dtoa.h" | 149 #include "wtf/dtoa.h" |
| 150 #include "wtf/text/StringBuffer.h" | 150 #include "wtf/text/StringBuffer.h" |
| 151 #include <deque> | 151 #include <deque> |
| (...skipping 2501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2653 | 2653 |
| 2654 return ClientRect::create(FloatRect(node->layoutObject()->visualRect())); | 2654 return ClientRect::create(FloatRect(node->layoutObject()->visualRect())); |
| 2655 } | 2655 } |
| 2656 | 2656 |
| 2657 void Internals::crash() | 2657 void Internals::crash() |
| 2658 { | 2658 { |
| 2659 CHECK(false) << "Intentional crash"; | 2659 CHECK(false) << "Intentional crash"; |
| 2660 } | 2660 } |
| 2661 | 2661 |
| 2662 } // namespace blink | 2662 } // namespace blink |
| OLD | NEW |