Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.cpp

Issue 2856173004: Clean up bindings/core/v8 (Part 5) (Closed)
Patch Set: Fix build Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 17 matching lines...) Expand all
28 28
29 #include <deque> 29 #include <deque>
30 #include <memory> 30 #include <memory>
31 31
32 #include "bindings/core/v8/ExceptionMessages.h" 32 #include "bindings/core/v8/ExceptionMessages.h"
33 #include "bindings/core/v8/ExceptionState.h" 33 #include "bindings/core/v8/ExceptionState.h"
34 #include "bindings/core/v8/ScriptFunction.h" 34 #include "bindings/core/v8/ScriptFunction.h"
35 #include "bindings/core/v8/ScriptPromise.h" 35 #include "bindings/core/v8/ScriptPromise.h"
36 #include "bindings/core/v8/ScriptPromiseResolver.h" 36 #include "bindings/core/v8/ScriptPromiseResolver.h"
37 #include "bindings/core/v8/V8IteratorResultValue.h" 37 #include "bindings/core/v8/V8IteratorResultValue.h"
38 #include "bindings/core/v8/V8ThrowException.h"
39 #include "bindings/core/v8/serialization/SerializedScriptValue.h"
40 #include "bindings/core/v8/serialization/SerializedScriptValueFactory.h"
41 #include "core/HTMLNames.h" 38 #include "core/HTMLNames.h"
42 #include "core/SVGNames.h" 39 #include "core/SVGNames.h"
43 #include "core/animation/DocumentTimeline.h" 40 #include "core/animation/DocumentTimeline.h"
44 #include "core/dom/ClientRect.h" 41 #include "core/dom/ClientRect.h"
45 #include "core/dom/ClientRectList.h" 42 #include "core/dom/ClientRectList.h"
46 #include "core/dom/DOMArrayBuffer.h" 43 #include "core/dom/DOMArrayBuffer.h"
47 #include "core/dom/DOMNodeIds.h" 44 #include "core/dom/DOMNodeIds.h"
48 #include "core/dom/DOMStringList.h" 45 #include "core/dom/DOMStringList.h"
49 #include "core/dom/Document.h" 46 #include "core/dom/Document.h"
50 #include "core/dom/Element.h" 47 #include "core/dom/Element.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 #include "core/testing/SequenceTest.h" 124 #include "core/testing/SequenceTest.h"
128 #include "core/testing/TypeConversions.h" 125 #include "core/testing/TypeConversions.h"
129 #include "core/testing/UnionTypesTest.h" 126 #include "core/testing/UnionTypesTest.h"
130 #include "core/workers/WorkerThread.h" 127 #include "core/workers/WorkerThread.h"
131 #include "gpu/command_buffer/client/gles2_interface.h" 128 #include "gpu/command_buffer/client/gles2_interface.h"
132 #include "platform/Cursor.h" 129 #include "platform/Cursor.h"
133 #include "platform/InstanceCounters.h" 130 #include "platform/InstanceCounters.h"
134 #include "platform/Language.h" 131 #include "platform/Language.h"
135 #include "platform/LayoutLocale.h" 132 #include "platform/LayoutLocale.h"
136 #include "platform/RuntimeEnabledFeatures.h" 133 #include "platform/RuntimeEnabledFeatures.h"
134 #include "platform/bindings/V8ThrowException.h"
137 #include "platform/geometry/IntRect.h" 135 #include "platform/geometry/IntRect.h"
138 #include "platform/geometry/LayoutRect.h" 136 #include "platform/geometry/LayoutRect.h"
139 #include "platform/graphics/GraphicsLayer.h" 137 #include "platform/graphics/GraphicsLayer.h"
140 #include "platform/heap/Handle.h" 138 #include "platform/heap/Handle.h"
141 #include "platform/instrumentation/tracing/TraceEvent.h" 139 #include "platform/instrumentation/tracing/TraceEvent.h"
142 #include "platform/loader/fetch/MemoryCache.h" 140 #include "platform/loader/fetch/MemoryCache.h"
143 #include "platform/loader/fetch/ResourceFetcher.h" 141 #include "platform/loader/fetch/ResourceFetcher.h"
144 #include "platform/loader/fetch/ResourceLoadPriority.h" 142 #include "platform/loader/fetch/ResourceLoadPriority.h"
145 #include "platform/network/NetworkStateNotifier.h" 143 #include "platform/network/NetworkStateNotifier.h"
146 #include "platform/scroll/ProgrammaticScrollAnimator.h" 144 #include "platform/scroll/ProgrammaticScrollAnimator.h"
(...skipping 3132 matching lines...) Expand 10 before | Expand all | Expand 10 after
3279 3277
3280 void Internals::crash() { 3278 void Internals::crash() {
3281 CHECK(false) << "Intentional crash"; 3279 CHECK(false) << "Intentional crash";
3282 } 3280 }
3283 3281
3284 void Internals::setIsLowEndDevice(bool is_low_end_device) { 3282 void Internals::setIsLowEndDevice(bool is_low_end_device) {
3285 MemoryCoordinator::SetIsLowEndDeviceForTesting(is_low_end_device); 3283 MemoryCoordinator::SetIsLowEndDeviceForTesting(is_low_end_device);
3286 } 3284 }
3287 3285
3288 } // namespace blink 3286 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698