| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 #include "core/testing/OriginTrialsTest.h" | 128 #include "core/testing/OriginTrialsTest.h" |
| 129 #include "core/testing/PrivateScriptTest.h" | 129 #include "core/testing/PrivateScriptTest.h" |
| 130 #include "core/testing/TypeConversions.h" | 130 #include "core/testing/TypeConversions.h" |
| 131 #include "core/testing/UnionTypesTest.h" | 131 #include "core/testing/UnionTypesTest.h" |
| 132 #include "core/workers/WorkerThread.h" | 132 #include "core/workers/WorkerThread.h" |
| 133 #include "gpu/command_buffer/client/gles2_interface.h" | 133 #include "gpu/command_buffer/client/gles2_interface.h" |
| 134 #include "platform/Cursor.h" | 134 #include "platform/Cursor.h" |
| 135 #include "platform/Language.h" | 135 #include "platform/Language.h" |
| 136 #include "platform/LayoutLocale.h" | 136 #include "platform/LayoutLocale.h" |
| 137 #include "platform/RuntimeEnabledFeatures.h" | 137 #include "platform/RuntimeEnabledFeatures.h" |
| 138 #include "platform/TraceEvent.h" | |
| 139 #include "platform/geometry/IntRect.h" | 138 #include "platform/geometry/IntRect.h" |
| 140 #include "platform/geometry/LayoutRect.h" | 139 #include "platform/geometry/LayoutRect.h" |
| 141 #include "platform/graphics/GraphicsLayer.h" | 140 #include "platform/graphics/GraphicsLayer.h" |
| 142 #include "platform/heap/Handle.h" | 141 #include "platform/heap/Handle.h" |
| 143 #include "platform/network/ResourceLoadPriority.h" | 142 #include "platform/network/ResourceLoadPriority.h" |
| 144 #include "platform/scroll/ProgrammaticScrollAnimator.h" | 143 #include "platform/scroll/ProgrammaticScrollAnimator.h" |
| 145 #include "platform/testing/URLTestHelpers.h" | 144 #include "platform/testing/URLTestHelpers.h" |
| 145 #include "platform/tracing/TraceEvent.h" |
| 146 #include "platform/weborigin/SchemeRegistry.h" | 146 #include "platform/weborigin/SchemeRegistry.h" |
| 147 #include "public/platform/Platform.h" | 147 #include "public/platform/Platform.h" |
| 148 #include "public/platform/WebConnectionType.h" | 148 #include "public/platform/WebConnectionType.h" |
| 149 #include "public/platform/WebGraphicsContext3DProvider.h" | 149 #include "public/platform/WebGraphicsContext3DProvider.h" |
| 150 #include "public/platform/WebLayer.h" | 150 #include "public/platform/WebLayer.h" |
| 151 #include "wtf/InstanceCounter.h" | 151 #include "wtf/InstanceCounter.h" |
| 152 #include "wtf/PtrUtil.h" | 152 #include "wtf/PtrUtil.h" |
| 153 #include "wtf/dtoa.h" | 153 #include "wtf/dtoa.h" |
| 154 #include "wtf/text/StringBuffer.h" | 154 #include "wtf/text/StringBuffer.h" |
| 155 #include <deque> | 155 #include <deque> |
| (...skipping 2851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3007 return ClientRect::create(); | 3007 return ClientRect::create(); |
| 3008 | 3008 |
| 3009 return ClientRect::create(FloatRect(node->layoutObject()->visualRect())); | 3009 return ClientRect::create(FloatRect(node->layoutObject()->visualRect())); |
| 3010 } | 3010 } |
| 3011 | 3011 |
| 3012 void Internals::crash() { | 3012 void Internals::crash() { |
| 3013 CHECK(false) << "Intentional crash"; | 3013 CHECK(false) << "Intentional crash"; |
| 3014 } | 3014 } |
| 3015 | 3015 |
| 3016 } // namespace blink | 3016 } // namespace blink |
| OLD | NEW |