Commit e17158e0 authored by vivek.vg's avatar vivek.vg Committed by Commit bot

[gcc 4.8 build-fix] Remove duplicate line for friend declaration in print_web_view_helper.h

Compilation on linux using gcc 4.8 toolchain fails for the following duplicate statement.

FRIEND_TEST_ALL_PREFIXES(PrintWebViewHelperTest, OnPrintPages):
error: ‘printing::PrintWebViewHelperTest_DISABLED_OnPrintPages_Test’ is already a friend of ‘printing::PrintWebViewHelper’ [-Werror]

NOTRY=true

Review URL: https://codereview.chromium.org/553313002

Cr-Commit-Position: refs/heads/master@{#294122}
parent 6b0a1859
......@@ -82,7 +82,6 @@ class PrintWebViewHelper
FRIEND_TEST_ALL_PREFIXES(PrintWebViewHelperPreviewTest,
BlockScriptInitiatedPrinting);
FRIEND_TEST_ALL_PREFIXES(PrintWebViewHelperTest, OnPrintPages);
FRIEND_TEST_ALL_PREFIXES(PrintWebViewHelperTest, OnPrintPages);
FRIEND_TEST_ALL_PREFIXES(PrintWebViewHelperTest,
BlockScriptInitiatedPrinting);
FRIEND_TEST_ALL_PREFIXES(PrintWebViewHelperTest,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment