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

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

Issue 2857143005: Gather serialization-related code into a directory. (Closed)
Patch Set: 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 16 matching lines...) Expand all
27 #include "core/testing/Internals.h" 27 #include "core/testing/Internals.h"
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/SerializedScriptValue.h"
38 #include "bindings/core/v8/SerializedScriptValueFactory.h"
39 #include "bindings/core/v8/V8IteratorResultValue.h" 37 #include "bindings/core/v8/V8IteratorResultValue.h"
40 #include "bindings/core/v8/V8ThrowException.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" 41 #include "core/HTMLNames.h"
42 #include "core/SVGNames.h" 42 #include "core/SVGNames.h"
43 #include "core/animation/DocumentTimeline.h" 43 #include "core/animation/DocumentTimeline.h"
44 #include "core/dom/ClientRect.h" 44 #include "core/dom/ClientRect.h"
45 #include "core/dom/ClientRectList.h" 45 #include "core/dom/ClientRectList.h"
46 #include "core/dom/DOMArrayBuffer.h" 46 #include "core/dom/DOMArrayBuffer.h"
47 #include "core/dom/DOMNodeIds.h" 47 #include "core/dom/DOMNodeIds.h"
48 #include "core/dom/DOMStringList.h" 48 #include "core/dom/DOMStringList.h"
49 #include "core/dom/Document.h" 49 #include "core/dom/Document.h"
50 #include "core/dom/Element.h" 50 #include "core/dom/Element.h"
(...skipping 3228 matching lines...) Expand 10 before | Expand all | Expand 10 after
3279 3279
3280 void Internals::crash() { 3280 void Internals::crash() {
3281 CHECK(false) << "Intentional crash"; 3281 CHECK(false) << "Intentional crash";
3282 } 3282 }
3283 3283
3284 void Internals::setIsLowEndDevice(bool is_low_end_device) { 3284 void Internals::setIsLowEndDevice(bool is_low_end_device) {
3285 MemoryCoordinator::SetIsLowEndDeviceForTesting(is_low_end_device); 3285 MemoryCoordinator::SetIsLowEndDeviceForTesting(is_low_end_device);
3286 } 3286 }
3287 3287
3288 } // namespace blink 3288 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698