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

Unified Diff: third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp

Issue 2125003002: Move CrossThreadCopier from platform/ to wtf/ Base URL: https://chromium.googlesource.com/chromium/src.git@TRV_RemoveTupleInBind
Patch Set: Rebase Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp
diff --git a/third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp b/third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp
index b8db4a474735f827a30e42aadb331dd0b4ecf56e..4c2c0a1205b3079617617e35c41b807d95e71e7f 100644
--- a/third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp
+++ b/third_party/WebKit/Source/core/fetch/ResourceLoaderOptionsTest.cpp
@@ -28,7 +28,7 @@ TEST(ResourceLoaderOptionsTest, DeepCopy)
original.securityOrigin = securityOrigin;
original.initiatorInfo.name = AtomicString("xmlhttprequest");
- CrossThreadResourceLoaderOptionsData copyData = CrossThreadCopier<ResourceLoaderOptions>::copy(original);
+ CrossThreadResourceLoaderOptionsData copyData = WTF::CrossThreadCopier<ResourceLoaderOptions>::copy(original);
ResourceLoaderOptions copy = copyData;
// Check that contents are correctly copied to |copyData|

Powered by Google App Engine
This is Rietveld 408576698