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

Unified Diff: components/printing/test/print_web_view_helper_browsertest.cc

Issue 1220133003: Fixed all unused-variable Clang warnings on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iaccessible2-fix-gn
Patch Set: Rebase. Created 5 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: components/printing/test/print_web_view_helper_browsertest.cc
diff --git a/components/printing/test/print_web_view_helper_browsertest.cc b/components/printing/test/print_web_view_helper_browsertest.cc
index 82d94935434feb1b2f8c92e70179df36ce836b76..28d25231ff507568f9cf9a11ec2bc8bf258abbd5 100644
--- a/components/printing/test/print_web_view_helper_browsertest.cc
+++ b/components/printing/test/print_web_view_helper_browsertest.cc
@@ -404,7 +404,7 @@ struct TestPageData {
const wchar_t* file;
};
-#if defined(OS_WIN) || defined(OS_MACOSX)
+#if defined(OS_MACOSX) && defined(ENABLE_BASIC_PRINTING)
const TestPageData kTestPages[] = {
{
"<html>"
@@ -417,23 +417,17 @@ const TestPageData kTestPages[] = {
"<body style=\"background-color: white;\">"
"<p style=\"font-family: arial;\">Hello World!</p>"
"</body>",
-#if defined(OS_MACOSX)
- // Mac printing code compensates for the WebKit scale factor while
- // generating
- // the metafile, so we expect smaller pages.
1,
+ // Mac printing code compensates for the WebKit scale factor while
+ // generating the metafile, so we expect smaller pages. (On non-Mac
+ // platforms, this would be 675x900).
600,
780,
-#else
- 1,
- 675,
- 900,
-#endif
NULL,
NULL,
},
};
-#endif // defined(OS_WIN) || defined(OS_MACOSX)
+#endif // defined(OS_MACOSX) && defined(ENABLE_BASIC_PRINTING)
} // namespace
// TODO(estade): need to port MockPrinter to get this on Linux. This involves

Powered by Google App Engine
This is Rietveld 408576698