Changeset 141297 in webkit


Ignore:
Timestamp:
Jan 30, 2013 12:42:40 PM (11 years ago)
Author:
tonyg@chromium.org
Message:

Fix compile error in WebFrameTest
https://bugs.webkit.org/show_bug.cgi?id=108360

Unreviewed build fix.

Fixes compile error:
../../Source/WebKit/chromium/tests/WebFrameTest.cpp:330:5: error: converting false to pointer type for argument 1 of char testing::internal::IsNullLiteralHelper(testing::internal::Secret*) [-Werror=conversion-null]

  • tests/WebFrameTest.cpp:
Location:
trunk/Source/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r141252 r141297  
     12013-01-30  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Fix compile error in WebFrameTest
     4        https://bugs.webkit.org/show_bug.cgi?id=108360
     5
     6        Unreviewed build fix.
     7
     8        Fixes compile error:
     9        ../../Source/WebKit/chromium/tests/WebFrameTest.cpp:330:5: error: converting false to pointer type for argument 1 of char testing::internal::IsNullLiteralHelper(testing::internal::Secret*) [-Werror=conversion-null]
     10
     11        * tests/WebFrameTest.cpp:
     12
    1132013-01-30  John Knottenbelt  <jknotten@chromium.org>
    214
  • trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp

    r141252 r141297  
    328328    int prevLayoutCount = webViewImpl->mainFrameImpl()->frameView()->layoutCount();
    329329    webViewImpl->setPageScaleFactor(3, WebPoint());
    330     EXPECT_EQ(false, webViewImpl->mainFrameImpl()->frameView()->needsLayout());
     330    EXPECT_FALSE(webViewImpl->mainFrameImpl()->frameView()->needsLayout());
    331331    EXPECT_EQ(prevLayoutCount, webViewImpl->mainFrameImpl()->frameView()->layoutCount());
    332332}
Note: See TracChangeset for help on using the changeset viewer.