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

Unified Diff: third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp

Issue 2809983002: Fix g_k_* symbols after blink rename. (Closed)
Patch Set: Created 3 years, 8 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/platform/graphics/BitmapImageTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp b/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
index 489afd92048d5d46cfcc459078a17076bb99f4be..3930947bb7465ce98f5aaa06fa5df69925d3fd42 100644
--- a/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp
@@ -281,8 +281,8 @@ TEST_P(DecodedImageTypeHistogramTest, ImageType) {
RunTest("Blink.DecodedImageType");
}
-DecodedImageTypeHistogramTest::ParamType
- g_k_decoded_image_type_histogram_test_params[] = {
+const DecodedImageTypeHistogramTest::ParamType
+ kDecodedImageTypeHistogramTestparams[] = {
{"/LayoutTests/images/resources/green.jpg",
BitmapImageMetrics::kImageJPEG},
{"/LayoutTests/images/resources/"
@@ -300,7 +300,7 @@ DecodedImageTypeHistogramTest::ParamType
INSTANTIATE_TEST_CASE_P(
DecodedImageTypeHistogramTest,
DecodedImageTypeHistogramTest,
- ::testing::ValuesIn(g_k_decoded_image_type_histogram_test_params));
+ ::testing::ValuesIn(kDecodedImageTypeHistogramTestparams));
using DecodedImageOrientationHistogramTest =
BitmapHistogramTest<ImageOrientationEnum>;

Powered by Google App Engine
This is Rietveld 408576698