From 1827852dbe5d95cfd8f84f9742017426c00d2068 Mon Sep 17 00:00:00 2001 From: "danakj@chromium.org" Date: Tue, 11 Jun 2013 22:42:32 +0000 Subject: [PATCH] Update hack in presubmit check to reflect new chromium path. src/base/hash_tables.h has moved to src/base/containers/hash_tables.h in r205241. R=maruel@chromium.org Review URL: https://chromiumcodereview.appspot.com/16787005 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@205662 0039d316-1c4b-4281-b951-d872f2087c98 --- presubmit_support.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/presubmit_support.py b/presubmit_support.py index 6f796b6bf..32d7c958e 100755 --- a/presubmit_support.py +++ b/presubmit_support.py @@ -317,11 +317,11 @@ class InputApi(object): self.Command = CommandData # Replace and as headers that need to be included - # with "base/hash_tables.h" instead. + # with "base/containers/hash_tables.h" instead. # Access to a protected member _XX of a client class # pylint: disable=W0212 self.cpplint._re_pattern_templates = [ - (a, b, 'base/hash_tables.h') + (a, b, 'base/containers/hash_tables.h') if header in ('', '') else (a, b, header) for (a, b, header) in cpplint._re_pattern_templates ]