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

Unified Diff: third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp

Issue 1548993002: Switch to standard integer types in base/strings/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/platform/graphics/gpu/DrawingBufferTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp
index fe8d37adb76ca2659f9788063a4fa158fd39b8ed..67a7abe0163456f207cfde8c50fc8efd17556d1e 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/gpu/DrawingBufferTest.cpp
@@ -609,7 +609,7 @@ TEST(DrawingBufferDepthStencilTest, packedDepthStencilSupported)
DepthStencilTestCase(true, true, true, 1, "both"),
};
- for (size_t i = 0; i < arraysize(cases); i++) {
+ for (size_t i = 0; i < WTF_ARRAY_LENGTH(cases); i++) {
SCOPED_TRACE(cases[i].testCaseName);
OwnPtr<DepthStencilTrackingContext> context = adoptPtr(new DepthStencilTrackingContext);
DepthStencilTrackingContext* trackingContext = context.get();

Powered by Google App Engine
This is Rietveld 408576698