Skip to content

Commit

Permalink
Fixes a compile error due to an call to an incorrect function to get …
Browse files Browse the repository at this point in the history
…the length.

TBR=tommi

Review URL: http://codereview.chromium.org/246094

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28052 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
ananta@chromium.org committed Oct 5, 2009
1 parent 9e35c82 commit b8d7cc0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions chrome_frame/test/net/fake_external_tab.cc
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ void CFUrlRequestUnittestRunner::InitializeLogging() {
}

void FilterDisabledTests() {
if (::testing::FLAGS_gtest_filter.GetLength() &&
if (::testing::FLAGS_gtest_filter.length() &&
::testing::FLAGS_gtest_filter.Compare("*") != 0) {
// Don't override user specified filters.
return;
Expand All @@ -338,11 +338,11 @@ void FilterDisabledTests() {
const char* disabled_tests[] = {
// Tests disabled since they're testing the same functionality used
// by the TestAutomationProvider.
"URLRequestTest.InterceptNetworkError",
"URLRequestTest.InterceptRestartRequired",
"URLRequestTest.InterceptRespectsCancelMain",
"URLRequestTest.InterceptRespectsCancelRedirect",
"URLRequestTest.InterceptRespectsCancelFinal",
"URLRequestTest.InterceptNetworkError",
"URLRequestTest.InterceptRestartRequired",
"URLRequestTest.InterceptRespectsCancelMain",
"URLRequestTest.InterceptRespectsCancelRedirect",
"URLRequestTest.InterceptRespectsCancelFinal",
"URLRequestTest.InterceptRespectsCancelInRestart",
"URLRequestTest.InterceptRedirect",
"URLRequestTest.InterceptServerError",
Expand Down

0 comments on commit b8d7cc0

Please sign in to comment.