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

Issue 3815007: Don't define USE_HEAPCHECKER on Windows. (Closed)

Created:
10 years, 2 months ago by Lei Zhang
Modified:
9 years, 7 months ago
CC:
chromium-reviews, Timur Iskhodzhanov
Visibility:
Public.

Description

Don't define USE_HEAPCHECKER on Windows. BUG=none TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=62780

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1 line, -1 line) Patch
M build/build_config.h View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 2 (0 generated)
Lei Zhang
It looks like we don't ever enable Heapchecker on Windows, so let's make USE_HEAPCHECKER reflect ...
10 years, 2 months ago (2010-10-15 03:01:16 UTC) #1
Alexander Potapenko
10 years, 2 months ago (2010-10-15 08:12:36 UTC) #2
LGTM, thanks!

On Fri, Oct 15, 2010 at 7:01 AM,  <thestig@chromium.org> wrote:
> Reviewers: Alexander Potapenko,
>
> Message:
> It looks like we don't ever enable Heapchecker on Windows, so let's make
> USE_HEAPCHECKER reflect that.
>
> I was trying to use USE_HEAPCHECKER and accidentally caused a lot of
> redness.
> Hopefully I can un-revert http://codereview.chromium.org/3779008/show
>
> Description:
> Don't define USE_HEAPCHECKER on Windows.
>
> BUG=none
> TEST=none
>
> Please review this at http://codereview.chromium.org/3815007/show
>
> SVN Base: svn://chrome-svn/chrome/trunk/src/
>
> Affected files:
>  M     build/build_config.h
>
>
> Index: build/build_config.h
> ===================================================================
> --- build/build_config.h        (revision 62695)
> +++ build/build_config.h        (working copy)
> @@ -66,7 +66,7 @@
>  #endif
>
>  // Use heapchecker.
> -#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(NO_HEAPCHECKER)
> +#if defined(OS_LINUX) && !defined(NO_HEAPCHECKER)
>  #define USE_HEAPCHECKER 1
>  #endif
>
>
>
>

Powered by Google App Engine
This is Rietveld 408576698