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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp

Issue 2860293002: Change cc::ElementId to be a uint64_t (Closed)
Patch Set: Merge branch 'master' into secondaryid 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/trees/tree_synchronizer_unittest.cc ('k') | third_party/WebKit/Source/core/dom/DOMNodeIds.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp b/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
index 87424b9fa663e84a3afc4ed310de8a977b7418ae..3d4eea2827565c6206174b81a9ea80c1f27abd5f 100644
--- a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
@@ -524,7 +524,7 @@ TEST(V8ScriptValueSerializerTest, TransferOffscreenCanvas) {
OffscreenCanvas* new_canvas =
V8OffscreenCanvas::toImpl(result.As<v8::Object>());
EXPECT_EQ(IntSize(10, 7), new_canvas->Size());
- EXPECT_EQ(519, new_canvas->PlaceholderCanvasId());
+ EXPECT_EQ(519u, new_canvas->PlaceholderCanvasId());
EXPECT_TRUE(canvas->IsNeutered());
EXPECT_FALSE(new_canvas->IsNeutered());
}
« no previous file with comments | « cc/trees/tree_synchronizer_unittest.cc ('k') | third_party/WebKit/Source/core/dom/DOMNodeIds.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698