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

Issue 246094: Fixes a compile error due to an call to an incorrect function to get the leng... (Closed)

Created:
11 years, 2 months ago by ananta
Modified:
9 years, 6 months ago
CC:
chromium-reviews_googlegroups.com, darin (slow to review)
Visibility:
Public.

Description

Fixes a compile error due to an call to an incorrect function to get the length. TBR=tommi Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=28052

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1 line, -1 line) Patch
M chrome_frame/test/net/fake_external_tab.cc View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 2 (0 generated)
ananta
11 years, 2 months ago (2009-10-05 21:51:49 UTC) #1
tommi (sloooow) - chröme
11 years, 2 months ago (2009-10-06 05:04:36 UTC) #2
lgtm.
(did this recently change?)

On Mon, Oct 5, 2009 at 5:51 PM, <ananta@chromium.org> wrote:

> Reviewers: tommi,
>
> Description:
> Fixes a compile error due to an call to an incorrect function to get the
> length.
>
> TBR=tommi
>
>
> Please review this at http://codereview.chromium.org/246094
>
> SVN Base: svn://chrome-svn/chrome/trunk/src/
>
> Affected files:
>  M     chrome_frame/test/net/fake_external_tab.cc
>
>
> Index: chrome_frame/test/net/fake_external_tab.cc
> ===================================================================
> --- chrome_frame/test/net/fake_external_tab.cc  (revision 27993)
> +++ chrome_frame/test/net/fake_external_tab.cc  (working copy)
> @@ -329,7 +329,7 @@
>  }
>
>  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;
>
>
>

Powered by Google App Engine
This is Rietveld 408576698