| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 #include "platform/Language.h" | 132 #include "platform/Language.h" |
| 133 #include "platform/LayoutLocale.h" | 133 #include "platform/LayoutLocale.h" |
| 134 #include "platform/RuntimeEnabledFeatures.h" | 134 #include "platform/RuntimeEnabledFeatures.h" |
| 135 #include "platform/geometry/IntRect.h" | 135 #include "platform/geometry/IntRect.h" |
| 136 #include "platform/geometry/LayoutRect.h" | 136 #include "platform/geometry/LayoutRect.h" |
| 137 #include "platform/graphics/GraphicsLayer.h" | 137 #include "platform/graphics/GraphicsLayer.h" |
| 138 #include "platform/heap/Handle.h" | 138 #include "platform/heap/Handle.h" |
| 139 #include "platform/instrumentation/tracing/TraceEvent.h" | 139 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 140 #include "platform/loader/fetch/MemoryCache.h" | 140 #include "platform/loader/fetch/MemoryCache.h" |
| 141 #include "platform/loader/fetch/ResourceFetcher.h" | 141 #include "platform/loader/fetch/ResourceFetcher.h" |
| 142 #include "platform/loader/fetch/ResourceLoadPriority.h" |
| 142 #include "platform/network/NetworkStateNotifier.h" | 143 #include "platform/network/NetworkStateNotifier.h" |
| 143 #include "platform/network/ResourceLoadPriority.h" | |
| 144 #include "platform/scroll/ProgrammaticScrollAnimator.h" | 144 #include "platform/scroll/ProgrammaticScrollAnimator.h" |
| 145 #include "platform/scroll/ScrollbarTheme.h" | 145 #include "platform/scroll/ScrollbarTheme.h" |
| 146 #include "platform/testing/URLTestHelpers.h" | 146 #include "platform/testing/URLTestHelpers.h" |
| 147 #include "platform/weborigin/SchemeRegistry.h" | 147 #include "platform/weborigin/SchemeRegistry.h" |
| 148 #include "public/platform/Platform.h" | 148 #include "public/platform/Platform.h" |
| 149 #include "public/platform/WebConnectionType.h" | 149 #include "public/platform/WebConnectionType.h" |
| 150 #include "public/platform/WebGraphicsContext3DProvider.h" | 150 #include "public/platform/WebGraphicsContext3DProvider.h" |
| 151 #include "public/platform/WebLayer.h" | 151 #include "public/platform/WebLayer.h" |
| 152 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h
" | 152 #include "public/platform/modules/remoteplayback/WebRemotePlaybackAvailability.h
" |
| 153 #include "v8/include/v8.h" | 153 #include "v8/include/v8.h" |
| (...skipping 3072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3226 | 3226 |
| 3227 void Internals::crash() { | 3227 void Internals::crash() { |
| 3228 CHECK(false) << "Intentional crash"; | 3228 CHECK(false) << "Intentional crash"; |
| 3229 } | 3229 } |
| 3230 | 3230 |
| 3231 void Internals::setIsLowEndDevice(bool isLowEndDevice) { | 3231 void Internals::setIsLowEndDevice(bool isLowEndDevice) { |
| 3232 MemoryCoordinator::setIsLowEndDeviceForTesting(isLowEndDevice); | 3232 MemoryCoordinator::setIsLowEndDeviceForTesting(isLowEndDevice); |
| 3233 } | 3233 } |
| 3234 | 3234 |
| 3235 } // namespace blink | 3235 } // namespace blink |
| OLD | NEW |