| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 #include "core/html/HTMLIFrameElement.h" | 84 #include "core/html/HTMLIFrameElement.h" |
| 85 #include "core/html/HTMLImageElement.h" | 85 #include "core/html/HTMLImageElement.h" |
| 86 #include "core/html/HTMLInputElement.h" | 86 #include "core/html/HTMLInputElement.h" |
| 87 #include "core/html/HTMLMediaElement.h" | 87 #include "core/html/HTMLMediaElement.h" |
| 88 #include "core/html/HTMLSelectElement.h" | 88 #include "core/html/HTMLSelectElement.h" |
| 89 #include "core/html/HTMLTextAreaElement.h" | 89 #include "core/html/HTMLTextAreaElement.h" |
| 90 #include "core/html/HTMLVideoElement.h" | 90 #include "core/html/HTMLVideoElement.h" |
| 91 #include "core/html/canvas/CanvasFontCache.h" | 91 #include "core/html/canvas/CanvasFontCache.h" |
| 92 #include "core/html/canvas/CanvasRenderingContext.h" | 92 #include "core/html/canvas/CanvasRenderingContext.h" |
| 93 #include "core/html/forms/FormController.h" | 93 #include "core/html/forms/FormController.h" |
| 94 #include "core/html/forms/TextControlInnerElements.h" |
| 94 #include "core/html/shadow/ShadowElementNames.h" | 95 #include "core/html/shadow/ShadowElementNames.h" |
| 95 #include "core/html/shadow/TextControlInnerElements.h" | |
| 96 #include "core/input/EventHandler.h" | 96 #include "core/input/EventHandler.h" |
| 97 #include "core/input/KeyboardEventManager.h" | 97 #include "core/input/KeyboardEventManager.h" |
| 98 #include "core/inspector/MainThreadDebugger.h" | 98 #include "core/inspector/MainThreadDebugger.h" |
| 99 #include "core/layout/LayoutMenuList.h" | 99 #include "core/layout/LayoutMenuList.h" |
| 100 #include "core/layout/LayoutObject.h" | 100 #include "core/layout/LayoutObject.h" |
| 101 #include "core/layout/LayoutTreeAsText.h" | 101 #include "core/layout/LayoutTreeAsText.h" |
| 102 #include "core/layout/api/LayoutMenuListItem.h" | 102 #include "core/layout/api/LayoutMenuListItem.h" |
| 103 #include "core/layout/api/LayoutViewItem.h" | 103 #include "core/layout/api/LayoutViewItem.h" |
| 104 #include "core/layout/compositing/CompositedLayerMapping.h" | 104 #include "core/layout/compositing/CompositedLayerMapping.h" |
| 105 #include "core/layout/compositing/PaintLayerCompositor.h" | 105 #include "core/layout/compositing/PaintLayerCompositor.h" |
| (...skipping 3169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3275 | 3275 |
| 3276 void Internals::crash() { | 3276 void Internals::crash() { |
| 3277 CHECK(false) << "Intentional crash"; | 3277 CHECK(false) << "Intentional crash"; |
| 3278 } | 3278 } |
| 3279 | 3279 |
| 3280 void Internals::setIsLowEndDevice(bool is_low_end_device) { | 3280 void Internals::setIsLowEndDevice(bool is_low_end_device) { |
| 3281 MemoryCoordinator::SetIsLowEndDeviceForTesting(is_low_end_device); | 3281 MemoryCoordinator::SetIsLowEndDeviceForTesting(is_low_end_device); |
| 3282 } | 3282 } |
| 3283 | 3283 |
| 3284 } // namespace blink | 3284 } // namespace blink |
| OLD | NEW |